summaryrefslogtreecommitdiffstats
path: root/kjsembed/kjscmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kjsembed/kjscmd.cpp')
-rw-r--r--kjsembed/kjscmd.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kjsembed/kjscmd.cpp b/kjsembed/kjscmd.cpp
index 220a1b50..5e6ae15a 100644
--- a/kjsembed/kjscmd.cpp
+++ b/kjsembed/kjscmd.cpp
@@ -92,13 +92,13 @@ int main( int argc, char **argv )
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
- // Setup KApplication
- KApplication *app;
+ // Setup TDEApplication
+ TDEApplication *app;
if ( nogui ) {
- app = new KApplication( false, false );
+ app = new TDEApplication( false, false );
}
else {
- app = new KApplication;
+ app = new TDEApplication;
app->connect( app, TQT_SIGNAL( lastWindowClosed() ), TQT_SLOT(quit()) );
}