summaryrefslogtreecommitdiffstats
path: root/tdeui/tests/qxembedtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/tests/qxembedtest.cpp')
-rw-r--r--tdeui/tests/qxembedtest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeui/tests/qxembedtest.cpp b/tdeui/tests/qxembedtest.cpp
index 4965e5487..fe6c9aef9 100644
--- a/tdeui/tests/qxembedtest.cpp
+++ b/tdeui/tests/qxembedtest.cpp
@@ -25,10 +25,10 @@ main(int argc, char**argv)
TQApplication a(argc,argv);
- TQWidget *main = new TQVBox(NULL,"main",Qt::WDestructiveClose);
+ TQWidget *main = new TQVBox(NULL,"main",TQt::WDestructiveClose);
TQWidget *top = new TQHBox(main);
TQPushButton *quit = new TQPushButton("Quit", top);
- TQObject::connect( quit, TQT_SIGNAL(clicked()), main, TQT_SLOT(close()) );
+ TQObject::connect( quit, TQ_SIGNAL(clicked()), main, TQ_SLOT(close()) );
TQLineEdit *edit = new TQLineEdit(top);
edit->setText( "Just to see focus changes");
QXEmbed *embed = new QXEmbed(main);