summaryrefslogtreecommitdiffstats
path: root/libkdegames/highscore/kexthighscore.h
diff options
context:
space:
mode:
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;