From 54241a1f0a21c7433f8dd2fa0410b93d38cce520 Mon Sep 17 00:00:00 2001 From: tpearson Date: Tue, 17 Aug 2010 02:26:08 +0000 Subject: Typelocking git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1164527 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdecore/klocale.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'kdecore/klocale.h') 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 -- cgit v1.2.1