diff options
Diffstat (limited to 'lib/koproperty')
-rw-r--r-- | lib/koproperty/test/main.cpp | 6 | ||||
-rw-r--r-- | lib/koproperty/test/test.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/koproperty/test/main.cpp b/lib/koproperty/test/main.cpp index 83370cfd..b28a8034 100644 --- a/lib/koproperty/test/main.cpp +++ b/lib/koproperty/test/main.cpp @@ -39,8 +39,8 @@ int main(int argc, char **argv) KAboutData about("proptest", "KoProperty Test", version, description, KAboutData::License_GPL, "(C) 2005 Cedric Pasteur", 0, 0, "cedric.pasteur@free.fr"); about.addAuthor( "Cedric Pasteur", 0, "cedric.pasteur@free.fr" ); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app; Test *mainWin = 0; @@ -51,7 +51,7 @@ int main(int argc, char **argv) else { // no session.. just start up normally - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); /// @todo do something with the command line args here diff --git a/lib/koproperty/test/test.cpp b/lib/koproperty/test/test.cpp index 1c4678c9..ecf41473 100644 --- a/lib/koproperty/test/test.cpp +++ b/lib/koproperty/test/test.cpp @@ -39,7 +39,7 @@ using namespace KoProperty; Test::Test() : KMainWindow(0,"koproperty_test") { - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); const bool flat = args->isSet("flat"); const bool readOnly = args->isSet("ro"); |