diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:26 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:26 -0600 |
commit | 7fd4ff679fc385d5d26ca76609a729bfb2d71243 (patch) | |
tree | 4772b26893f2f049ce3ea2c3f8ca8deac36fb107 /configdialog/main.cpp | |
parent | c40f698e626d32f447dd8b9377e09ad771c31503 (diff) | |
download | kbfx-7fd4ff679fc385d5d26ca76609a729bfb2d71243.tar.gz kbfx-7fd4ff679fc385d5d26ca76609a729bfb2d71243.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'configdialog/main.cpp')
-rw-r--r-- | configdialog/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configdialog/main.cpp b/configdialog/main.cpp index 09de452..22ef3f0 100644 --- a/configdialog/main.cpp +++ b/configdialog/main.cpp @@ -53,7 +53,7 @@ class KbfxConfigApplication : public KUniqueApplication virtual int newInstance() { - KCmdLineArgs* KbfxArgs = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs* KbfxArgs = TDECmdLineArgs::parsedArgs(); /* prepare kbfx theme cmdline option given */ if ( KbfxArgs->isSet ( "prepare" ) ) @@ -142,9 +142,9 @@ int main ( int argc, char **argv ) "phobosk@mail.kbfx.org" ); about.addAuthor ( "PhobosK", 0, "phobosk@mail.kbfx.org" ); - KCmdLineArgs::init( argc, argv, &about ); + TDECmdLineArgs::init( argc, argv, &about ); KUniqueApplication::addCmdLineOptions(); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::addCmdLineOptions( options ); if (!KUniqueApplication::start()) return 1; |