summaryrefslogtreecommitdiffstats
path: root/libtdegames
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:20 +0900
commitbc3c69592f7fbc99121d1eb1e27603e1415afecc (patch)
treec6c33c28f9fecad61b2b7c5d21b10c34812f2c59 /libtdegames
parent667bb584114e3bfdb8e0ecabc75fd328f3f8e4f2 (diff)
downloadtdegames-bc3c69592f7fbc99121d1eb1e27603e1415afecc.tar.gz
tdegames-bc3c69592f7fbc99121d1eb1e27603e1415afecc.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libtdegames')
-rw-r--r--libtdegames/highscore/kexthighscore.h16
-rw-r--r--libtdegames/highscore/kexthighscore_item.h14
-rw-r--r--libtdegames/highscore/khighscore.h2
-rw-r--r--libtdegames/highscore/kscoredialog.h2
-rw-r--r--libtdegames/kcanvasrootpixmap.h2
-rw-r--r--libtdegames/kcarddialog.h2
-rw-r--r--libtdegames/kchat.h2
-rw-r--r--libtdegames/kchatbase.h2
-rw-r--r--libtdegames/kchatdialog.h2
-rw-r--r--libtdegames/kgame/dialogs/kgamedebugdialog.h2
-rw-r--r--libtdegames/kgame/dialogs/kgamedialog.h2
-rw-r--r--libtdegames/kgame/dialogs/kgamedialogconfig.h4
-rw-r--r--libtdegames/kgame/kgame.h2
-rw-r--r--libtdegames/kgame/kgamechat.h2
-rw-r--r--libtdegames/kgame/kgameio.h10
-rw-r--r--libtdegames/kgame/kgamemessage.h2
-rw-r--r--libtdegames/kgame/kgamenetwork.h2
-rw-r--r--libtdegames/kgame/kgameprocess.h2
-rw-r--r--libtdegames/kgame/kgameproperty.h2
-rw-r--r--libtdegames/kgame/kgamepropertyhandler.h2
-rw-r--r--libtdegames/kgame/kplayer.h2
-rw-r--r--libtdegames/kgamelcd.h6
-rw-r--r--libtdegames/kgamemisc.h2
-rw-r--r--libtdegames/kgameprogress.h2
-rw-r--r--libtdegames/kstdgameaction.h2
25 files changed, 45 insertions, 45 deletions
diff --git a/libtdegames/highscore/kexthighscore.h b/libtdegames/highscore/kexthighscore.h
index e4412fe6..d76df4e1 100644
--- a/libtdegames/highscore/kexthighscore.h
+++ b/libtdegames/highscore/kexthighscore.h
@@ -40,42 +40,42 @@ extern ManagerPrivate *internal;
/**
* Get the current game type.
*/
-KDE_EXPORT uint gameType();
+TDE_EXPORT uint gameType();
/**
* Set the current game type.
*/
-KDE_EXPORT void setGameType(uint gameType);
+TDE_EXPORT void setGameType(uint gameType);
/**
* Configure the highscores.
* @return true if the configuration has been modified and saved
*/
-KDE_EXPORT bool configure(TQWidget *parent);
+TDE_EXPORT bool configure(TQWidget *parent);
/**
* Show the highscores lists.
*/
-KDE_EXPORT void show(TQWidget *parent);
+TDE_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, TQWidget *widget);
+TDE_EXPORT void submitScore(const Score &score, TQWidget *widget);
/**
* @return the last score in the local list of highscores. The worst possible
* score if there are less items than the maximum number.
*/
-KDE_EXPORT Score lastScore();
+TDE_EXPORT Score lastScore();
/**
* @return the first score in the local list of highscores (the worst possible
* score if there is no entry).
*/
-KDE_EXPORT Score firstScore();
+TDE_EXPORT Score firstScore();
/**
* This class manages highscores and players entries (several players can
@@ -136,7 +136,7 @@ KDE_EXPORT Score firstScore();
* and the value of the items that you have optionnally added
* with Score::setData() ; player name and date are set automatically.
*/
-class KDE_EXPORT Manager
+class TDE_EXPORT Manager
{
public:
/**
diff --git a/libtdegames/highscore/kexthighscore_item.h b/libtdegames/highscore/kexthighscore_item.h
index ac24ef83..72a5911b 100644
--- a/libtdegames/highscore/kexthighscore_item.h
+++ b/libtdegames/highscore/kexthighscore_item.h
@@ -37,7 +37,7 @@ namespace KExtHighscore
* a highscore element (such as the score, the date, ...) or a player
* info (such as the player name, the best score, ...).
*/
-class KDE_EXPORT Item
+class TDE_EXPORT Item
{
public:
/**
@@ -172,7 +172,7 @@ enum ScoreType { Won = 0, Lost = -1, Draw = -2 };
* This class contains data for a score. You should not inherit from
* this class but reimplement the methods in Highscores.
*/
-class KDE_EXPORT Score
+class TDE_EXPORT Score
{
public:
Score(ScoreType type = Won);
@@ -241,8 +241,8 @@ class KDE_EXPORT Score
friend TQDataStream &operator >>(TQDataStream &stream, Score &score);
};
-KDE_EXPORT TQDataStream &operator <<(TQDataStream &stream, const Score &score);
-KDE_EXPORT TQDataStream &operator >>(TQDataStream &stream, Score &score);
+TDE_EXPORT TQDataStream &operator <<(TQDataStream &stream, const Score &score);
+TDE_EXPORT TQDataStream &operator >>(TQDataStream &stream, Score &score);
/**
* This class is used to store and show scores for multiplayer games.
@@ -264,7 +264,7 @@ KDE_EXPORT TQDataStream &operator >>(TQDataStream &stream, Score &score);
* ms.addScore(1, score);
* </pre>
*/
-class KDE_EXPORT MultiplayerScores
+class TDE_EXPORT MultiplayerScores
{
public:
MultiplayerScores();
@@ -309,8 +309,8 @@ class KDE_EXPORT MultiplayerScores
MultiplayerScores &score);
};
-KDE_EXPORT TQDataStream &operator <<(TQDataStream &stream, const MultiplayerScores &score);
-KDE_EXPORT TQDataStream &operator >>(TQDataStream &stream, MultiplayerScores &score);
+TDE_EXPORT TQDataStream &operator <<(TQDataStream &stream, const MultiplayerScores &score);
+TDE_EXPORT TQDataStream &operator >>(TQDataStream &stream, MultiplayerScores &score);
} // namespace
diff --git a/libtdegames/highscore/khighscore.h b/libtdegames/highscore/khighscore.h
index ebdaebf5..62451fc8 100644
--- a/libtdegames/highscore/khighscore.h
+++ b/libtdegames/highscore/khighscore.h
@@ -81,7 +81,7 @@ class KHighscorePrivate;
* Easy, what?
* @author Andreas Beckermann <b_mann@gmx.de>
**/
-class KDE_EXPORT KHighscore : public TQObject
+class TDE_EXPORT KHighscore : public TQObject
{
TQ_OBJECT
diff --git a/libtdegames/highscore/kscoredialog.h b/libtdegames/highscore/kscoredialog.h
index 535d4be2..6789654c 100644
--- a/libtdegames/highscore/kscoredialog.h
+++ b/libtdegames/highscore/kscoredialog.h
@@ -37,7 +37,7 @@ class TQWidgetStack;
/**
* A simple high score dialog.
*/
-class KDE_EXPORT KScoreDialog : public KDialogBase {
+class TDE_EXPORT KScoreDialog : public KDialogBase {
TQ_OBJECT
diff --git a/libtdegames/kcanvasrootpixmap.h b/libtdegames/kcanvasrootpixmap.h
index 0868f603..cff176b3 100644
--- a/libtdegames/kcanvasrootpixmap.h
+++ b/libtdegames/kcanvasrootpixmap.h
@@ -37,7 +37,7 @@ class TQCanvasView;
* <li>other views of the canvas will have the same background pixmap.</li>
* </ul>
*/
-class KDE_EXPORT KCanvasRootPixmap : public KRootPixmap
+class TDE_EXPORT KCanvasRootPixmap : public KRootPixmap
{
TQ_OBJECT
diff --git a/libtdegames/kcarddialog.h b/libtdegames/kcarddialog.h
index 3b10b3de..cdf75b78 100644
--- a/libtdegames/kcarddialog.h
+++ b/libtdegames/kcarddialog.h
@@ -87,7 +87,7 @@ class KCardDialogPrivate;
* @author Martin Heni <martin@heni-online.de>
* @version $Id$
*/
-class KDE_EXPORT KCardDialog : public KDialogBase
+class TDE_EXPORT KCardDialog : public KDialogBase
{
TQ_OBJECT
diff --git a/libtdegames/kchat.h b/libtdegames/kchat.h
index d60b2a0d..b623f606 100644
--- a/libtdegames/kchat.h
+++ b/libtdegames/kchat.h
@@ -33,7 +33,7 @@ class KChatPrivate;
*
* @author Andreas Beckermann <b_mann@gmx.de>
**/
-class KDE_EXPORT KChat : public KChatBase
+class TDE_EXPORT KChat : public KChatBase
{
TQ_OBJECT
diff --git a/libtdegames/kchatbase.h b/libtdegames/kchatbase.h
index b5946938..bd06ccb9 100644
--- a/libtdegames/kchatbase.h
+++ b/libtdegames/kchatbase.h
@@ -181,7 +181,7 @@ class KChatBasePrivate;
*
* @author Andreas Beckermann <b_mann@gmx.de>
**/
-class KDE_EXPORT KChatBase : public TQFrame
+class TDE_EXPORT KChatBase : public TQFrame
{
TQ_OBJECT
diff --git a/libtdegames/kchatdialog.h b/libtdegames/kchatdialog.h
index bbb948b5..82cf0175 100644
--- a/libtdegames/kchatdialog.h
+++ b/libtdegames/kchatdialog.h
@@ -27,7 +27,7 @@ class KChatBase;
class KChatDialogPrivate;
-class KDE_EXPORT KChatDialog : public KDialogBase
+class TDE_EXPORT KChatDialog : public KDialogBase
{
TQ_OBJECT
diff --git a/libtdegames/kgame/dialogs/kgamedebugdialog.h b/libtdegames/kgame/dialogs/kgamedebugdialog.h
index 8b7a6579..06a46202 100644
--- a/libtdegames/kgame/dialogs/kgamedebugdialog.h
+++ b/libtdegames/kgame/dialogs/kgamedebugdialog.h
@@ -31,7 +31,7 @@ class KGamePropertyBase;
class KGameDebugDialogPrivate;
-class KDE_EXPORT KGameDebugDialog : public KDialogBase
+class TDE_EXPORT KGameDebugDialog : public KDialogBase
{
TQ_OBJECT
diff --git a/libtdegames/kgame/dialogs/kgamedialog.h b/libtdegames/kgame/dialogs/kgamedialog.h
index 6eafc732..834fb5a5 100644
--- a/libtdegames/kgame/dialogs/kgamedialog.h
+++ b/libtdegames/kgame/dialogs/kgamedialog.h
@@ -71,7 +71,7 @@ class KGameDialogPrivate;
* @short Main configuration dialog for KGame
* @author Andreas Beckermann <b_mann@gmx.de>
**/
-class KDE_EXPORT KGameDialog : public KDialogBase
+class TDE_EXPORT KGameDialog : public KDialogBase
{
TQ_OBJECT
diff --git a/libtdegames/kgame/dialogs/kgamedialogconfig.h b/libtdegames/kgame/dialogs/kgamedialogconfig.h
index ead91b47..28c611f8 100644
--- a/libtdegames/kgame/dialogs/kgamedialogconfig.h
+++ b/libtdegames/kgame/dialogs/kgamedialogconfig.h
@@ -48,7 +48,7 @@ class KGameDialogConfigPrivate;
* @short Base class for configuration widgets
* @author Andreas Beckermann <b_mann@gmx.de>
**/
-class KDE_EXPORT KGameDialogConfig : public TQWidget
+class TDE_EXPORT KGameDialogConfig : public TQWidget
{
TQ_OBJECT
@@ -210,7 +210,7 @@ private:
};
class KGameDialogNetworkConfigPrivate;
-class KDE_EXPORT KGameDialogNetworkConfig : public KGameDialogConfig
+class TDE_EXPORT KGameDialogNetworkConfig : public KGameDialogConfig
{
TQ_OBJECT
diff --git a/libtdegames/kgame/kgame.h b/libtdegames/kgame/kgame.h
index 68179d5c..f2d687cc 100644
--- a/libtdegames/kgame/kgame.h
+++ b/libtdegames/kgame/kgame.h
@@ -59,7 +59,7 @@ class KGamePrivate;
* @author Martin Heni <martin@heni-online.de>
*
*/
-class KDE_EXPORT KGame : public KGameNetwork
+class TDE_EXPORT KGame : public KGameNetwork
{
TQ_OBJECT
diff --git a/libtdegames/kgame/kgamechat.h b/libtdegames/kgame/kgamechat.h
index dea8f6fd..29239aff 100644
--- a/libtdegames/kgame/kgamechat.h
+++ b/libtdegames/kgame/kgamechat.h
@@ -40,7 +40,7 @@ class KGameChatPrivate;
*
* @author Andreas Beckermann <b_mann@gmx.de>
**/
-class KDE_EXPORT KGameChat : public KChatBase
+class TDE_EXPORT KGameChat : public KChatBase
{
TQ_OBJECT
diff --git a/libtdegames/kgame/kgameio.h b/libtdegames/kgame/kgameio.h
index 9b7c34b5..7d776cd0 100644
--- a/libtdegames/kgame/kgameio.h
+++ b/libtdegames/kgame/kgameio.h
@@ -52,7 +52,7 @@ class TDEProcess;
*
* @author Martin Heni <martin@heni-online.de>
*/
-class KDE_EXPORT KGameIO : public TQObject
+class TDE_EXPORT KGameIO : public TQObject
{
TQ_OBJECT
@@ -175,7 +175,7 @@ private:
* from a widget and create moves for the player it belongs to.
* @author Martin Heni <martin@heni-online.de>
*/
-class KDE_EXPORT KGameKeyIO : public KGameIO
+class TDE_EXPORT KGameKeyIO : public KGameIO
{
TQ_OBJECT
@@ -247,7 +247,7 @@ protected:
* from a widget and create moves for the player it belongs to.
* @author Martin Heni <martin@heni-online.de>
*/
-class KDE_EXPORT KGameMouseIO : public KGameIO
+class TDE_EXPORT KGameMouseIO : public KGameIO
{
TQ_OBJECT
@@ -323,7 +323,7 @@ protected:
* for the definition of the computer player.
* @author Martin Heni <martin@heni-online.de>
*/
-class KDE_EXPORT KGameProcessIO : public KGameIO
+class TDE_EXPORT KGameProcessIO : public KGameIO
{
TQ_OBJECT
@@ -478,7 +478,7 @@ private:
*
* @author <b_mann@gmx.de>
*/
-class KDE_EXPORT KGameComputerIO : public KGameIO
+class TDE_EXPORT KGameComputerIO : public KGameIO
{
TQ_OBJECT
diff --git a/libtdegames/kgame/kgamemessage.h b/libtdegames/kgame/kgamemessage.h
index 9e1930a0..4c7c08e4 100644
--- a/libtdegames/kgame/kgamemessage.h
+++ b/libtdegames/kgame/kgamemessage.h
@@ -26,7 +26,7 @@
#include <tqdatastream.h>
#include <kdemacros.h>
-class KDE_EXPORT KGameMessage
+class TDE_EXPORT KGameMessage
{
public:
/**
diff --git a/libtdegames/kgame/kgamenetwork.h b/libtdegames/kgame/kgamenetwork.h
index e7ea067c..571d5963 100644
--- a/libtdegames/kgame/kgamenetwork.h
+++ b/libtdegames/kgame/kgamenetwork.h
@@ -43,7 +43,7 @@ class KGameNetworkPrivate;
* @author Martin Heni <martin@heni-online.de>
* @version $Id$
*/
-class KDE_EXPORT KGameNetwork : public TQObject
+class TDE_EXPORT KGameNetwork : public TQObject
{
TQ_OBJECT
diff --git a/libtdegames/kgame/kgameprocess.h b/libtdegames/kgame/kgameprocess.h
index 65b0ab74..5faaf372 100644
--- a/libtdegames/kgame/kgameprocess.h
+++ b/libtdegames/kgame/kgameprocess.h
@@ -39,7 +39,7 @@ class KMessageFilePipe;
* Using these two classes will give fully transparent communication
* via TQDataStreams.
*/
-class KDE_EXPORT KGameProcess: public TQObject
+class TDE_EXPORT KGameProcess: public TQObject
{
TQ_OBJECT
diff --git a/libtdegames/kgame/kgameproperty.h b/libtdegames/kgame/kgameproperty.h
index 17de3fb2..15bc9956 100644
--- a/libtdegames/kgame/kgameproperty.h
+++ b/libtdegames/kgame/kgameproperty.h
@@ -39,7 +39,7 @@ using namespace std;
*
* @author Andreas Beckermann <b_mann@gmx.de>
**/
-class KDE_EXPORT KGamePropertyBase
+class TDE_EXPORT KGamePropertyBase
{
public:
enum PropertyDataIds { // these belong to KPlayer/KGame!
diff --git a/libtdegames/kgame/kgamepropertyhandler.h b/libtdegames/kgame/kgamepropertyhandler.h
index edda54a9..97f42b42 100644
--- a/libtdegames/kgame/kgamepropertyhandler.h
+++ b/libtdegames/kgame/kgamepropertyhandler.h
@@ -69,7 +69,7 @@ class KGamePropertyHandlerPrivate; // wow - what a name ;-)
* multiplied.
*
**/
-class KDE_EXPORT KGamePropertyHandler : public TQObject
+class TDE_EXPORT KGamePropertyHandler : public TQObject
{
TQ_OBJECT
diff --git a/libtdegames/kgame/kplayer.h b/libtdegames/kgame/kplayer.h
index 0beb089c..c12cb92e 100644
--- a/libtdegames/kgame/kplayer.h
+++ b/libtdegames/kgame/kplayer.h
@@ -66,7 +66,7 @@ class KPlayerPrivate;
* functions which are shared by all of your KGameIOs.
*
*/
-class KDE_EXPORT KPlayer : public TQObject
+class TDE_EXPORT KPlayer : public TQObject
{
TQ_OBJECT
diff --git a/libtdegames/kgamelcd.h b/libtdegames/kgamelcd.h
index 82def14f..2efdc969 100644
--- a/libtdegames/kgamelcd.h
+++ b/libtdegames/kgamelcd.h
@@ -39,7 +39,7 @@ class TQTimer;
*
* @since 3.2
*/
-class KDE_EXPORT KGameLCD : public TQLCDNumber
+class TDE_EXPORT KGameLCD : public TQLCDNumber
{
TQ_OBJECT
@@ -124,7 +124,7 @@ private:
*
* @since 3.2
*/
-class KDE_EXPORT KGameLCDClock : public KGameLCD
+class TDE_EXPORT KGameLCDClock : public KGameLCD
{
TQ_OBJECT
@@ -189,7 +189,7 @@ private:
*
* @since 3.2
*/
-class KDE_EXPORT KGameLCDList : public TQWidget
+class TDE_EXPORT KGameLCDList : public TQWidget
{
TQ_OBJECT
diff --git a/libtdegames/kgamemisc.h b/libtdegames/kgamemisc.h
index d610effd..f3c49b1d 100644
--- a/libtdegames/kgamemisc.h
+++ b/libtdegames/kgamemisc.h
@@ -30,7 +30,7 @@ class KGameMiscPrivate;
* a class for. If you know a class for any of these member s please drop one of
* the above copyright holders a mail (or just kde-games-devel@kde.org)
**/
-class KDE_EXPORT KGameMisc
+class TDE_EXPORT KGameMisc
{
public:
KGameMisc();
diff --git a/libtdegames/kgameprogress.h b/libtdegames/kgameprogress.h
index 13e0f66a..e5372ce6 100644
--- a/libtdegames/kgameprogress.h
+++ b/libtdegames/kgameprogress.h
@@ -47,7 +47,7 @@
* @author Martynas Kunigelis
* @version $Id$
*/
-class KDE_EXPORT KGameProgress : public TQFrame, public TQRangeControl
+class TDE_EXPORT KGameProgress : public TQFrame, public TQRangeControl
{
TQ_OBJECT
diff --git a/libtdegames/kstdgameaction.h b/libtdegames/kstdgameaction.h
index f0d809b2..16624f1a 100644
--- a/libtdegames/kstdgameaction.h
+++ b/libtdegames/kstdgameaction.h
@@ -45,7 +45,7 @@ class TDESelectAction;
* @author Andreas Beckermann <b_mann@gmx.de>
*/
// #### KDE4: transform in namespace
-class KDE_EXPORT KStdGameAction
+class TDE_EXPORT KStdGameAction
{
public:
/**