diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-20 00:21:02 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-20 00:21:02 -0600 |
commit | 8e7816b2f9f62a2df094c5b2a7aa5abb6bc1226a (patch) | |
tree | 19ff5ecf5e6b5168e5503677f18b85f3dfa91f95 /kparts/tests | |
parent | 5bca2e3e42d02f8fed9ffc399ea14f8a05694cb0 (diff) | |
download | tdelibs-8e7816b2f9f62a2df094c5b2a7aa5abb6bc1226a.tar.gz tdelibs-8e7816b2f9f62a2df094c5b2a7aa5abb6bc1226a.zip |
Rename KApplication to TDEApplication to avoid conflicts with KDE4
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; |