diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-13 11:09:49 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-14 23:27:16 +0900 |
commit | 2d7d2122cf33aa713cebef95981305039c798003 (patch) | |
tree | 5475258078fa4044901c26c26ac4d04500fa2233 /kcontrol | |
parent | 55dd5ae8226b7d73b0883f827472e420977160e5 (diff) | |
download | tdebase-2d7d2122cf33aa713cebef95981305039c798003.tar.gz tdebase-2d7d2122cf33aa713cebef95981305039c798003.zip |
Replace Q_WS_* defines with TQ_WS_* equivalents
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kcontrol')
-rw-r--r-- | kcontrol/colors/colorscm.cpp | 4 | ||||
-rw-r--r-- | kcontrol/filetypes/keditfiletype.cpp | 4 | ||||
-rw-r--r-- | kcontrol/konqhtml/appearance.cpp | 2 | ||||
-rw-r--r-- | kcontrol/konqhtml/jsopts.cpp | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/kcontrol/colors/colorscm.cpp b/kcontrol/colors/colorscm.cpp index ee4bd087a..aa5703fbb 100644 --- a/kcontrol/colors/colorscm.cpp +++ b/kcontrol/colors/colorscm.cpp @@ -35,7 +35,7 @@ #include <kstandarddirs.h> #include <tdeaboutdata.h> -#if defined Q_WS_X11 && !defined K_WS_QTONLY +#if defined TQ_WS_X11 && !defined K_WS_QTONLY #include <X11/Xlib.h> #include <X11/Xatom.h> #endif @@ -396,7 +396,7 @@ void KColorScheme::save() flags |= KRdbExportColors; else { -#if defined Q_WS_X11 && !defined K_WS_QTONLY +#if defined TQ_WS_X11 && !defined K_WS_QTONLY // Undo the property xrdb has placed on the root window (if any), // i.e. remove all entries, including ours XDeleteProperty( tqt_xdisplay(), tqt_xrootwin(), XA_RESOURCE_MANAGER ); diff --git a/kcontrol/filetypes/keditfiletype.cpp b/kcontrol/filetypes/keditfiletype.cpp index a7412438b..8c6c06931 100644 --- a/kcontrol/filetypes/keditfiletype.cpp +++ b/kcontrol/filetypes/keditfiletype.cpp @@ -29,7 +29,7 @@ #include <tdesycoca.h> #include <kstandarddirs.h> -#ifdef Q_WS_X11 +#ifdef TQ_WS_X11 #include <X11/Xlib.h> #include <X11/Xutil.h> #endif @@ -159,7 +159,7 @@ int main(int argc, char ** argv) } FileTypeDialog dlg( mime, createType ); -#if defined Q_WS_X11 +#if defined TQ_WS_X11 if( args->isSet( "parent" )) { bool ok; long id = args->getOption("parent").toLong(&ok); diff --git a/kcontrol/konqhtml/appearance.cpp b/kcontrol/konqhtml/appearance.cpp index ed0dfbc01..6e92d8ffe 100644 --- a/kcontrol/konqhtml/appearance.cpp +++ b/kcontrol/konqhtml/appearance.cpp @@ -18,7 +18,7 @@ #include <tdelocale.h> #include <knuminput.h> -#if defined Q_WS_X11 && !defined K_WS_QTONLY +#if defined TQ_WS_X11 && !defined K_WS_QTONLY #include <X11/Xlib.h> #endif diff --git a/kcontrol/konqhtml/jsopts.cpp b/kcontrol/konqhtml/jsopts.cpp index 33fc33a7a..8b3b40f4f 100644 --- a/kcontrol/konqhtml/jsopts.cpp +++ b/kcontrol/konqhtml/jsopts.cpp @@ -19,7 +19,7 @@ #include <kdebug.h> #include <kurlrequester.h> -#if defined Q_WS_X11 && !defined K_WS_QTONLY +#if defined TQ_WS_X11 && !defined K_WS_QTONLY #include <X11/Xlib.h> #endif |