mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-03 23:52:41 +00:00
DEVTOOLS: CREATE_TRANSLATIONS: Remove useless const return value for useUTF8 member function.
This commit is contained in:
parent
29b6274e67
commit
a9a63ec931
@ -240,7 +240,7 @@ const char *PoMessageEntryList::languageName() const {
|
||||
return _langName ? _langName : _langNameAlt;
|
||||
}
|
||||
|
||||
const bool PoMessageEntryList::useUTF8() const {
|
||||
bool PoMessageEntryList::useUTF8() const {
|
||||
return _useUTF8;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user