diff options
Diffstat (limited to 'kdecore/klocale.h')
-rw-r--r-- | kdecore/klocale.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/kdecore/klocale.h b/kdecore/klocale.h index bab4c4adb..5f8be8f7c 100644 --- a/kdecore/klocale.h +++ b/kdecore/klocale.h @@ -1221,12 +1221,22 @@ private: /** * @internal A TQFile filename encoding function (TQFile::encodeFn). */ +#ifdef USE_QT3 static TQCString encodeFileNameUTF8( const TQString & fileName ); +#endif // USE_QT3 +#ifdef USE_QT4 + static TQByteArray encodeFileNameUTF8( const TQString & fileName ); +#endif // USE_QT4 /** * @internal TQFile filename decoding function (TQFile::decodeFn). */ +#ifdef USE_QT3 static TQString decodeFileNameUTF8( const TQCString & localFileName ); +#endif // USE_QT3 +#ifdef USE_QT4 + static TQString decodeFileNameUTF8( const TQByteArray & localFileName ); +#endif // USE_QT4 /** * @internal Changes the file name of the catalog to the correct |