summaryrefslogtreecommitdiffstats
path: root/kresources/slox/testsloxaccounts.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/slox/testsloxaccounts.cpp')
-rw-r--r--kresources/slox/testsloxaccounts.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kresources/slox/testsloxaccounts.cpp b/kresources/slox/testsloxaccounts.cpp
index c1cc75d3..6ad10c1b 100644
--- a/kresources/slox/testsloxaccounts.cpp
+++ b/kresources/slox/testsloxaccounts.cpp
@@ -25,7 +25,7 @@
#include <kdebug.h>
#include <kcmdlineargs.h>
-#include <qpushbutton.h>
+#include <tqpushbutton.h>
static const KCmdLineOptions options[] =
{
@@ -48,14 +48,14 @@ int main(int argc,char **argv)
bool verbose = false;
if ( args->isSet( "verbose" ) ) verbose = true;
- QPushButton button( "Close", 0 );
+ TQPushButton button( "Close", 0 );
SloxAccounts::setServer( "f85.suse.de" );
SloxAccounts::self();
app.setMainWidget( &button );
button.show();
- QObject::connect( &button, SIGNAL( clicked() ), &app, SLOT( quit() ) );
+ TQObject::connect( &button, TQT_SIGNAL( clicked() ), &app, TQT_SLOT( quit() ) );
app.exec();
}