summaryrefslogtreecommitdiffstats
path: root/tdewidgets
diff options
context:
space:
mode:
Diffstat (limited to 'tdewidgets')
-rw-r--r--tdewidgets/README4
-rw-r--r--tdewidgets/kde.widgets4
-rw-r--r--tdewidgets/maketdewidgets.cpp6
-rw-r--r--tdewidgets/tests/test.widgets4
4 files changed, 9 insertions, 9 deletions
diff --git a/tdewidgets/README b/tdewidgets/README
index d0ce8fcab..e14b2fe5a 100644
--- a/tdewidgets/README
+++ b/tdewidgets/README
@@ -11,14 +11,14 @@ $TDEDIR/lib/trinity/plugins . With the KDE build system nothing special
(i.e. editing the plugin path) is needed, as uic will automatically be
called with -L <path to the tdewidgets plugin> .
-This plugin uses the QWidget plugin API of Qt >= 3.0
+This plugin uses the TQWidget plugin API of Qt >= 3.0
Don't expect it to work with any other versions of Qt.
Known Bugs:
===========
-Designer crashes when using widgets that use the kapp pointer.
+Designer crashes when using widgets that use the tdeApp pointer.
HOWTO Add Widgets:
==================
diff --git a/tdewidgets/kde.widgets b/tdewidgets/kde.widgets
index 787b6f336..499a14ca8 100644
--- a/tdewidgets/kde.widgets
+++ b/tdewidgets/kde.widgets
@@ -1,6 +1,6 @@
[Global]
PluginName=KDEWidgets
-Includes=kinstance.h,classpreviews.h
+Includes=tdeinstance.h,classpreviews.h
Init=new TDEInstance("tdewidgets");
[KActiveLabel]
@@ -281,7 +281,7 @@ ConstructorArgs=(TDEABC::LdapConfigWidget::W_ALL, parent, name)
IncludeFile=karrowbutton.h
ToolTip=Draws a button which shows an arrow pointing into a certain direction.
Group=Buttons (KDE)
-ConstructorArgs=(parent,Qt::UpArrow,name)
+ConstructorArgs=(parent,TQt::UpArrow,name)
[KAnimWidget]
IncludeFile=kanimwidget.h
diff --git a/tdewidgets/maketdewidgets.cpp b/tdewidgets/maketdewidgets.cpp
index d890433c3..fbed4b7f4 100644
--- a/tdewidgets/maketdewidgets.cpp
+++ b/tdewidgets/maketdewidgets.cpp
@@ -1,6 +1,6 @@
/* Copyright (C) 2004-2005 ian reinhart geiser <geiseri@sourcextreme.com> */
#include <tdeaboutdata.h>
-#include <kinstance.h>
+#include <tdeinstance.h>
#include <tdecmdlineargs.h>
#include <tdeconfig.h>
#include <kmacroexpander.h>
@@ -21,7 +21,7 @@ static const char classHeader[] = "/**\n"
"*/\n"
"#include <tqwidgetplugin.h>\n";
static const char classDef[] = "#ifndef EMBED_IMAGES\n"
- "#include <kstandarddirs.h>\n"
+ "#include <tdestandarddirs.h>\n"
"#endif\n"
"\n"
"class %PluginName : public TQWidgetPlugin\n"
@@ -104,7 +104,7 @@ static const char widgetCreate[] = " if (key == TQString::fromLatin1(\"%
" return new %ImplClass%ConstructorArgs;\n";
static const char endCreate[] = " return 0;\n"
"}\n"
- "KDE_Q_EXPORT_PLUGIN(%PluginName)\n";
+ "TDE_EXPORT_PLUGIN(%PluginName)\n";
static TDECmdLineOptions options[] =
diff --git a/tdewidgets/tests/test.widgets b/tdewidgets/tests/test.widgets
index e428d0711..b78ae6ba3 100644
--- a/tdewidgets/tests/test.widgets
+++ b/tdewidgets/tests/test.widgets
@@ -1,6 +1,6 @@
[Global]
PluginName=KDEWidgets
-Includes=kinstance.h,classpreviews.h
+Includes=tdeinstance.h,classpreviews.h
Init=new TDEInstance("tdewidgets");
[KActiveLabel]
@@ -173,7 +173,7 @@ Group=Input (KDE)
[KURLLabel]
ToolTip=URL Label (KDE)
-ConstructorArgs=("KURLLabel", QString::null, parent, name)
+ConstructorArgs=("KURLLabel", TQString::null, parent, name)
Group=Display (KDE)
[KURLComboRequester]