summaryrefslogtreecommitdiffstats
path: root/tdecore
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:33 +0900
commit2e0398f755ab6af9557cc805e4f484bbf0c150f6 (patch)
tree712a40baf33c3b3488ab74f0a7240cfd87cef532 /tdecore
parent8d88f31f74735c9580b7d374f709a22206d14982 (diff)
downloadtdelibs-2e0398f755ab6af9557cc805e4f484bbf0c150f6.tar.gz
tdelibs-2e0398f755ab6af9557cc805e4f484bbf0c150f6.zip
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdecore')
-rw-r--r--tdecore/kurl.cpp4
-rw-r--r--tdecore/tdeapplication.cpp4
-rw-r--r--tdecore/tdeconfig_compiler/tests/CMakeLists.txt2
-rw-r--r--tdecore/tdeconfig_compiler/tests/Makefile.am2
-rw-r--r--tdecore/tdemultipledrag.cpp2
-rw-r--r--tdecore/tdemultipledrag.h4
6 files changed, 9 insertions, 9 deletions
diff --git a/tdecore/kurl.cpp b/tdecore/kurl.cpp
index 7fd8ad26a..290355552 100644
--- a/tdecore/kurl.cpp
+++ b/tdecore/kurl.cpp
@@ -533,7 +533,7 @@ TQDataStream & operator>> (TQDataStream & s, KURL & a)
return s;
}
-#ifndef QT_NO_NETWORKPROTOCOL
+#ifndef TQT_NO_NETWORKPROTOCOL
KURL::KURL( const TQUrl &u )
{
d = new KURLPrivate();
@@ -1065,7 +1065,7 @@ KURL& KURL::operator=( const char * _url )
return *this;
}
-#ifndef QT_NO_NETWORKPROTOCOL
+#ifndef TQT_NO_NETWORKPROTOCOL
KURL& KURL::operator=( const TQUrl & u )
{
m_strProtocol = u.protocol();
diff --git a/tdecore/tdeapplication.cpp b/tdecore/tdeapplication.cpp
index cae6b708d..fbc986de2 100644
--- a/tdecore/tdeapplication.cpp
+++ b/tdecore/tdeapplication.cpp
@@ -64,7 +64,7 @@
#include <tqstylefactory.h>
#include <tqmetaobject.h>
#include <tqimage.h>
-#ifndef QT_NO_SQL
+#ifndef TQT_NO_SQL
#include <tqsqlpropertymap.h>
#endif
@@ -2610,7 +2610,7 @@ void TDEApplication::propagateSettings(SettingsCategory arg)
void TDEApplication::installKDEPropertyMap()
{
-#ifndef QT_NO_SQL
+#ifndef TQT_NO_SQL
static bool installed = false;
if (installed) return;
installed = true;
diff --git a/tdecore/tdeconfig_compiler/tests/CMakeLists.txt b/tdecore/tdeconfig_compiler/tests/CMakeLists.txt
index 3034773b0..2715d19b9 100644
--- a/tdecore/tdeconfig_compiler/tests/CMakeLists.txt
+++ b/tdecore/tdeconfig_compiler/tests/CMakeLists.txt
@@ -25,7 +25,7 @@ link_directories(
)
add_definitions(
- -DQT_NO_CAST_ASCII
+ -DTQT_NO_CAST_ASCII
-DSRCDIR="${CMAKE_CURRENT_SOURCE_DIR}"
)
diff --git a/tdecore/tdeconfig_compiler/tests/Makefile.am b/tdecore/tdeconfig_compiler/tests/Makefile.am
index ee0e95af2..48157b473 100644
--- a/tdecore/tdeconfig_compiler/tests/Makefile.am
+++ b/tdecore/tdeconfig_compiler/tests/Makefile.am
@@ -1,4 +1,4 @@
-AM_CPPFLAGS = -I$(top_srcdir)/tdecore -I$(top_srcdir)/tdeunittest $(all_includes) -DQT_NO_CAST_ASCII -DSRCDIR=\"$(srcdir)\"
+AM_CPPFLAGS = -I$(top_srcdir)/tdecore -I$(top_srcdir)/tdeunittest $(all_includes) -DTQT_NO_CAST_ASCII -DSRCDIR=\"$(srcdir)\"
check_PROGRAMS = test1 test2 test3 test4 test5 test6 test7 test8 test9 test_dpointer
diff --git a/tdecore/tdemultipledrag.cpp b/tdecore/tdemultipledrag.cpp
index db71c9e87..c3d63cbde 100644
--- a/tdecore/tdemultipledrag.cpp
+++ b/tdecore/tdemultipledrag.cpp
@@ -20,7 +20,7 @@
#include "tdemultipledrag.h"
#include "kdebug.h"
-#ifndef QT_NO_DRAGANDDROP
+#ifndef TQT_NO_DRAGANDDROP
KMultipleDrag::KMultipleDrag( TQWidget *dragSource, const char *name )
: TQDragObject( dragSource, name )
diff --git a/tdecore/tdemultipledrag.h b/tdecore/tdemultipledrag.h
index 4b9a05e80..bfc408019 100644
--- a/tdecore/tdemultipledrag.h
+++ b/tdecore/tdemultipledrag.h
@@ -20,7 +20,7 @@
#ifndef TDEMULTIPLEDRAG_H
#define TDEMULTIPLEDRAG_H
-#ifndef QT_NO_DRAGANDDROP
+#ifndef TQT_NO_DRAGANDDROP
#include <tqdragobject.h>
#include <tqvaluelist.h>
@@ -100,6 +100,6 @@ private:
KMultipleDragPrivate* d;
};
-#endif // QT_NO_DRAGANDDROP
+#endif // TQT_NO_DRAGANDDROP
#endif // TDEMULTIPLEDRAG_H