summaryrefslogtreecommitdiffstats
path: root/libkdegames/highscore/kexthighscore.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/highscore/kexthighscore.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/highscore/kexthighscore.h')
-rw-r--r--libkdegames/highscore/kexthighscore.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/libkdegames/highscore/kexthighscore.h b/libkdegames/highscore/kexthighscore.h
index 2484f97b..6dac5ff7 100644
--- a/libkdegames/highscore/kexthighscore.h
+++ b/libkdegames/highscore/kexthighscore.h
@@ -51,19 +51,19 @@ KDE_EXPORT void setGameType(uint gameType);
* Configure the highscores.
* @return true if the configuration has been modified and saved
*/
-KDE_EXPORT bool configure(QWidget *parent);
+KDE_EXPORT bool configure(TQWidget *parent);
/**
* Show the highscores lists.
*/
-KDE_EXPORT void show(QWidget *parent);
+KDE_EXPORT void show(TQWidget *parent);
/**
* Submit a score. See @ref Manager for usage example.
*
* @param widget a widget used as parent for error message box.
*/
-KDE_EXPORT void submitScore(const Score &score, QWidget *widget);
+KDE_EXPORT void submitScore(const Score &score, TQWidget *widget);
/**
* @return the last score in the local list of highscores. The worst possible
@@ -160,7 +160,7 @@ class KDE_EXPORT Manager
* @param version the game version which is sent to the web server (it can
* be useful for backward compatibility on the server side).
*/
- void setWWHighscores(const KURL &url, const QString &version);
+ void setWWHighscores(const KURL &url, const TQString &version);
/**
* Set if the number of lost games should be track for the world-wide
@@ -211,7 +211,7 @@ class KDE_EXPORT Manager
*
* Note: should be called at construction time.
*/
- void setScoreHistogram(const QMemArray<uint> &scores, ScoreTypeBound type);
+ void setScoreHistogram(const TQMemArray<uint> &scores, ScoreTypeBound type);
/**
* Enumerate different conditions under which to show the
@@ -272,7 +272,7 @@ class KDE_EXPORT Manager
*
* Note : This method should be called at construction time.
*/
- void addScoreItem(const QString &name, Item *item);
+ void addScoreItem(const TQString &name, Item *item);
enum PlayerItemType { MeanScore, BestScore };
/**
@@ -307,7 +307,7 @@ class KDE_EXPORT Manager
* implementation works only for one game type : you need to reimplement
* this method if the number of game types is more than one.
*/
- virtual QString gameTypeLabel(uint gameType, LabelType type) const;
+ virtual TQString gameTypeLabel(uint gameType, LabelType type) const;
protected:
/**
@@ -352,8 +352,8 @@ class KDE_EXPORT Manager
* @param item the item name
* @param content the item content
*/
- static void addToQueryURL(KURL &url, const QString &item,
- const QString &content);
+ static void addToQueryURL(KURL &url, const TQString &item,
+ const TQString &content);
friend class ManagerPrivate;