diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-17 02:26:08 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-17 02:26:08 +0000 |
commit | 54241a1f0a21c7433f8dd2fa0410b93d38cce520 (patch) | |
tree | e509d81c855874912b63381f3f760f0ccbadbe57 /kdecore/klocale.h | |
parent | a52572740657a539cdc032c89ec744673071698b (diff) | |
download | tdelibs-54241a1f0a21c7433f8dd2fa0410b93d38cce520.tar.gz tdelibs-54241a1f0a21c7433f8dd2fa0410b93d38cce520.zip |
Typelocking
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1164527 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 |