summaryrefslogtreecommitdiffstats
path: root/languages/python
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-09-28 14:42:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-09-28 14:42:41 +0900
commit36d1594949e416e812ed681ed3c84d80649fbf20 (patch)
treefd37c202692e90306ef60b7c84ff3446d7fa663a /languages/python
parentc62b8d179c20b81c12363c73fb89d824d37ed2ce (diff)
downloadtdevelop-36d1594949e416e812ed681ed3c84d80649fbf20.tar.gz
tdevelop-36d1594949e416e812ed681ed3c84d80649fbf20.zip
qt -> tqt conversion:
kdeqt -> kdetqt qtkde -> tqtkde qtdesigner -> tqtdesigner Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'languages/python')
-rw-r--r--languages/python/CMakeLists.txt2
-rw-r--r--languages/python/Makefile.am2
-rw-r--r--languages/python/pythonsupportpart.cpp2
-rw-r--r--languages/python/qtdesignerpythonintegration.cpp4
-rw-r--r--languages/python/qtdesignerpythonintegration.h2
5 files changed, 6 insertions, 6 deletions
diff --git a/languages/python/CMakeLists.txt b/languages/python/CMakeLists.txt
index 989ea1b1..485f78de 100644
--- a/languages/python/CMakeLists.txt
+++ b/languages/python/CMakeLists.txt
@@ -43,7 +43,7 @@ tde_add_kpart( libkdevpythonsupport AUTOMOC
SOURCES
pythonsupportpart.cpp pythonconfigwidget.cpp
pythonconfigwidgetbase.ui pythonimplementationwidget.cpp
- qtdesignerpythonintegration.cpp
+ tqtdesignerpythonintegration.cpp
LINK designerintegration-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/languages/python/Makefile.am b/languages/python/Makefile.am
index feef469d..df1b906b 100644
--- a/languages/python/Makefile.am
+++ b/languages/python/Makefile.am
@@ -13,7 +13,7 @@ libkdevpythonsupport_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
libkdevpythonsupport_la_LIBADD = $(top_builddir)/lib/libtdevelop.la \
$(top_builddir)/languages/lib/designer_integration/libdesignerintegration.la
libkdevpythonsupport_la_SOURCES = pythonsupportpart.cpp pythonconfigwidget.cpp pythonconfigwidgetbase.ui \
- pythonimplementationwidget.cpp qtdesignerpythonintegration.cpp
+ pythonimplementationwidget.cpp tqtdesignerpythonintegration.cpp
tdeio_pydoc_la_SOURCES = pydoc.cpp
tdeio_pydoc_la_LIBADD = $(LIB_TDEIO)
diff --git a/languages/python/pythonsupportpart.cpp b/languages/python/pythonsupportpart.cpp
index 092f40b9..e7529c2f 100644
--- a/languages/python/pythonsupportpart.cpp
+++ b/languages/python/pythonsupportpart.cpp
@@ -35,7 +35,7 @@
#include <tdelocale.h>
#include <tqregexp.h>
-#include "qtdesignerpythonintegration.h"
+#include "tqtdesignerpythonintegration.h"
#include "pythonimplementationwidget.h"
typedef KDevGenericFactory<PythonSupportPart> PythonSupportFactory;
diff --git a/languages/python/qtdesignerpythonintegration.cpp b/languages/python/qtdesignerpythonintegration.cpp
index c1627f18..e1a4f0b1 100644
--- a/languages/python/qtdesignerpythonintegration.cpp
+++ b/languages/python/qtdesignerpythonintegration.cpp
@@ -17,7 +17,7 @@
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-#include "qtdesignerpythonintegration.h"
+#include "tqtdesignerpythonintegration.h"
#include <tqpair.h>
#include <tqregexp.h>
@@ -94,4 +94,4 @@ void QtDesignerPythonIntegration::addFunctionToClass(KInterfaceDesigner::Functio
}
}
-#include "qtdesignerpythonintegration.moc"
+#include "tqtdesignerpythonintegration.moc"
diff --git a/languages/python/qtdesignerpythonintegration.h b/languages/python/qtdesignerpythonintegration.h
index 8b171f17..9878acad 100644
--- a/languages/python/qtdesignerpythonintegration.h
+++ b/languages/python/qtdesignerpythonintegration.h
@@ -20,7 +20,7 @@
#ifndef TQTDESIGNERPYTHONINTEGRATION_H
#define TQTDESIGNERPYTHONINTEGRATION_H
-#include <qtdesignerintegration.h>
+#include <tqtdesignerintegration.h>
class QtDesignerPythonIntegration : public QtDesignerIntegration
{