DEVTOOLS: CREATE_TRANSLATIONS: Remove useless const return value for useUTF8 member function.

This commit is contained in:
aryanrawlani28 2020-08-21 11:34:21 +05:30 committed by Eugene Sandulenko
parent 29b6274e67
commit a9a63ec931
2 changed files with 2 additions and 2 deletions

View File

@ -240,7 +240,7 @@ const char *PoMessageEntryList::languageName() const {
return _langName ? _langName : _langNameAlt;
}
const bool PoMessageEntryList::useUTF8() const {
bool PoMessageEntryList::useUTF8() const {
return _useUTF8;
}

View File

@ -87,7 +87,7 @@ public:
const char *language() const;
const char *languageName() const;
const bool useUTF8() const;
bool useUTF8() const;
int size() const;
const PoMessageEntry *entry(int) const;