Skip to content

Bad characters in editwidget.cpp #13

Description

@kyle-sylvestre

I get "error: character too large for enclosing character literal type" when building on macOS. These two characters got incorrectly converted incorrectly to UTF-8:

(((unsigned int)theChar >= (unsigned int)('')) && ((unsigned int)theChar <= (unsigned int)(''))) ||

It should be:

 (((unsigned int)theChar >= (unsigned int)(L'À')) && ((unsigned int)theChar <= (unsigned int)(L'ÿ'))) || 

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions