diff options
Diffstat (limited to 'kparts/tests')
-rw-r--r-- | kparts/tests/example.cpp | 2 | ||||
-rw-r--r-- | kparts/tests/ghostview.cpp | 2 | ||||
-rw-r--r-- | kparts/tests/normalktm.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/kparts/tests/example.cpp b/kparts/tests/example.cpp index 7792c5d43..3675781ea 100644 --- a/kparts/tests/example.cpp +++ b/kparts/tests/example.cpp @@ -121,7 +121,7 @@ void Shell::slotFileEdit() int main( int argc, char **argv ) { - KApplication app( argc, argv, "kpartstest" ); + TDEApplication app( argc, argv, "kpartstest" ); Shell *shell = new Shell; diff --git a/kparts/tests/ghostview.cpp b/kparts/tests/ghostview.cpp index d7cf9d102..5d1bbe5b3 100644 --- a/kparts/tests/ghostview.cpp +++ b/kparts/tests/ghostview.cpp @@ -103,7 +103,7 @@ int main( int argc, char **argv ) { TDECmdLineArgs::init(argc, argv, "ghostviewtest", description, version); TDECmdLineArgs::addCmdLineOptions( options ); // Add my own options. - KApplication app; + TDEApplication app; TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); Shell *shell = new Shell; if ( args->count() == 1 ) diff --git a/kparts/tests/normalktm.cpp b/kparts/tests/normalktm.cpp index bb54521d1..82c464a5a 100644 --- a/kparts/tests/normalktm.cpp +++ b/kparts/tests/normalktm.cpp @@ -108,7 +108,7 @@ void Shell::slotFileEdit() int main( int argc, char **argv ) { - KApplication app( argc, argv, "kpartstest" ); // we cheat and call ourselves kpartstest for Shell::slotFileOpen() + TDEApplication app( argc, argv, "kpartstest" ); // we cheat and call ourselves kpartstest for Shell::slotFileOpen() Shell *shell = new Shell; |