diff options
author | Michele Calgaro <[email protected]> | 2024-02-13 11:03:25 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-02-13 11:03:25 +0900 |
commit | fb29802cdbc55ecbf7431cdea2bc62f2143260ce (patch) | |
tree | c8a5d96b49c4fa3e5caf54bd8e60afde1c3a1617 | |
parent | 936a0c73f552cce101c9aa5ec64800fad86542a2 (diff) | |
download | tde-style-baghira-fb29802cdbc55ecbf7431cdea2bc62f2143260ce.tar.gz tde-style-baghira-fb29802cdbc55ecbf7431cdea2bc62f2143260ce.zip |
Replace Q_WS_* defines with TQ_WS_* equivalents
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | sessionapplet/dmctl.cpp | 4 | ||||
-rw-r--r-- | sessionapplet/dmctl.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sessionapplet/dmctl.cpp b/sessionapplet/dmctl.cpp index 5390c29..f6a1d35 100644 --- a/sessionapplet/dmctl.cpp +++ b/sessionapplet/dmctl.cpp @@ -19,7 +19,7 @@ #include "dmctl.h" -#ifdef Q_WS_X11 +#ifdef TQ_WS_X11 #include <tdelocale.h> #include <dcopclient.h> @@ -320,4 +320,4 @@ DM::lockSwitchVT( int vt ) kapp->dcopClient()->send( "kdesktop", "KScreensaverIface", "lock()", "" ); } -#endif // Q_WS_X11 +#endif // TQ_WS_X11 diff --git a/sessionapplet/dmctl.h b/sessionapplet/dmctl.h index f8ce2c2..4d31c6b 100644 --- a/sessionapplet/dmctl.h +++ b/sessionapplet/dmctl.h @@ -33,7 +33,7 @@ typedef TQValueList<SessEnt> SessList; class DM { -#ifdef Q_WS_X11 +#ifdef TQ_WS_X11 public: DM(); @@ -64,7 +64,7 @@ private: bool exec( const char *cmd, TQCString &ret ); bool exec( const char *cmd ); -#else // Q_WS_X11 +#else // TQ_WS_X11 public: DM() {} @@ -84,7 +84,7 @@ public: bool bootOptions( TQStringList &opts, int &dflt, int &curr ); -#endif // Q_WS_X11 +#endif // TQ_WS_X11 }; // class DM |