summaryrefslogtreecommitdiffstats
path: root/kitchensync/src/configguiblank.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kitchensync/src/configguiblank.cpp')
-rw-r--r--kitchensync/src/configguiblank.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kitchensync/src/configguiblank.cpp b/kitchensync/src/configguiblank.cpp
index e3f7dbbc..3e9d47b6 100644
--- a/kitchensync/src/configguiblank.cpp
+++ b/kitchensync/src/configguiblank.cpp
@@ -23,22 +23,22 @@
#include <klocale.h>
-#include <qlabel.h>
-#include <qlayout.h>
+#include <tqlabel.h>
+#include <tqlayout.h>
-ConfigGuiBlank::ConfigGuiBlank( const QSync::Member &member, QWidget *parent )
+ConfigGuiBlank::ConfigGuiBlank( const QSync::Member &member, TQWidget *parent )
: ConfigGui( member, parent )
{
- QLabel *label = new QLabel( i18n( "This member/plugin needs no configuration." ), this );
+ TQLabel *label = new TQLabel( i18n( "This member/plugin needs no configuration." ), this );
topLayout()->addWidget( label );
}
-void ConfigGuiBlank::load( const QString& )
+void ConfigGuiBlank::load( const TQString& )
{
}
-QString ConfigGuiBlank::save() const
+TQString ConfigGuiBlank::save() const
{
- QString xml = "<config></config>";
+ TQString xml = "<config></config>";
return xml;
}