summaryrefslogtreecommitdiffstats
path: root/libkdegames/kgame/kgameerror.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
commit576eb4299a00bc053db35414406f46372a0f70f2 (patch)
tree4c030922d533821db464af566188e7d40cc8848c /libkdegames/kgame/kgameerror.h
parent0718336b6017d1a4fc1d626544180a5a2a29ddec (diff)
downloadtdegames-576eb4299a00bc053db35414406f46372a0f70f2.tar.gz
tdegames-576eb4299a00bc053db35414406f46372a0f70f2.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1157643 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkdegames/kgame/kgameerror.h')
-rw-r--r--libkdegames/kgame/kgameerror.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libkdegames/kgame/kgameerror.h b/libkdegames/kgame/kgameerror.h
index 2916e891..071737cc 100644
--- a/libkdegames/kgame/kgameerror.h
+++ b/libkdegames/kgame/kgameerror.h
@@ -23,7 +23,7 @@
#ifndef __KGAMEERROR_H_
#define __KGAMEERROR_H_
-#include <qstring.h>
+#include <tqstring.h>
class KGameError
@@ -40,19 +40,19 @@ public:
/**
* Generate an error message with Erorr Code = ErrCookie
**/
- static QByteArray errCookie(int localCookie, int remoteCookie);
- static QByteArray errVersion(int remoteVersion);
+ static TQByteArray errCookie(int localCookie, int remoteCookie);
+ static TQByteArray errVersion(int remoteVersion);
/**
- * Create an erorr text using a QDataStream (QByteArray) which was
+ * Create an erorr text using a TQDataStream (TQByteArray) which was
* created using @ref KGameError. This is the opposite function to all
* the errXYZ() function (e.g. @ref errVersion).
* You want to use this to generate the message that shall be
* displayed to the user.
* @return an error message
**/
- static QString errorText(int errorCode, QDataStream& message);
- static QString errorText(int errorCode, const QByteArray& message);
+ static TQString errorText(int errorCode, TQDataStream& message);
+ static TQString errorText(int errorCode, const TQByteArray& message);
};