mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
COMMON: Remove unused functions in TranslationManager
There were leftovers from the transition to U32String.
This commit is contained in:
parent
7a1b3983a2
commit
186e6142a0
@ -411,13 +411,6 @@ bool TranslationManager::checkHeader(File &in) {
|
||||
return true;
|
||||
}
|
||||
|
||||
String TranslationManager::convertBiDiString(const String &input) {
|
||||
if (getCurrentLanguage() != "he") //TODO: modify when we'll support other RTL languages, such as Arabic and Farsi
|
||||
return input;
|
||||
|
||||
return Common::convertBiDiString(input, HE_ISR);
|
||||
}
|
||||
|
||||
U32String TranslationManager::convertBiDiString(const U32String &input) {
|
||||
if (getCurrentLanguage() != "he") //TODO: modify when we'll support other RTL languages, such as Arabic and Farsi
|
||||
return input;
|
||||
|
@ -174,7 +174,6 @@ public:
|
||||
* For LTR (Left To Right) languages, returns the original input
|
||||
* For RTL (Right To Left) languages, returns visual representation of a logical single-line input
|
||||
*/
|
||||
String convertBiDiString(const String &input);
|
||||
U32String convertBiDiString(const U32String &input);
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user