summaryrefslogtreecommitdiffstats
path: root/kjsembed/tests
diff options
context:
space:
mode:
Diffstat (limited to 'kjsembed/tests')
-rw-r--r--kjsembed/tests/test.ui6
-rw-r--r--kjsembed/tests/testkjsembed.cpp6
2 files changed, 4 insertions, 8 deletions
diff --git a/kjsembed/tests/test.ui b/kjsembed/tests/test.ui
index 477d8c2d..4c031d9b 100644
--- a/kjsembed/tests/test.ui
+++ b/kjsembed/tests/test.ui
@@ -105,7 +105,7 @@
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>
-<includehints>
- <includehint>klineedit.h</includehint>
-</includehints>
+<includes>
+ <include location="global" impldecl="in implementation">klineedit.h</include>
+</includes>
</UI>
diff --git a/kjsembed/tests/testkjsembed.cpp b/kjsembed/tests/testkjsembed.cpp
index b3ff219e..7018497f 100644
--- a/kjsembed/tests/testkjsembed.cpp
+++ b/kjsembed/tests/testkjsembed.cpp
@@ -52,13 +52,9 @@ int main( int argc, char **argv )
// Setup Window
app.setMainWidget( console );
- app.connect( &app, TQT_SIGNAL( lastWindowClosed() ), TQT_SLOT(quit()) );
+ app.connect( &app, TQ_SIGNAL( lastWindowClosed() ), TQ_SLOT(quit()) );
console->resize( 600, 450 );
console->show();
return app.exec();
}
-
-// Local Variables:
-// c-basic-offset: 4
-// End: