diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:24 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:24 -0600 |
commit | dff37d34bfe7faea4801d273ea569eccf7e75c53 (patch) | |
tree | 1a21c502569988267643fcbb28e5bf6f1f475426 /src/main.cpp | |
parent | e7bc3fffe60a085609ff9dc88bbadb9cffc7f4e4 (diff) | |
download | basket-dff37d34bfe7faea4801d273ea569eccf7e75c53.tar.gz basket-dff37d34bfe7faea4801d273ea569eccf7e75c53.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0e291ee..81b73e8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -70,11 +70,11 @@ class Application : public KUniqueApplication int main(int argc, char *argv[]) { - // KCmdLineArgs::init will modify argv[0] so we remember it: + // TDECmdLineArgs::init will modify argv[0] so we remember it: const char *argv0 = (argc >= 1 ? argv[0] : ""); - KCmdLineArgs::init(argc, argv, Global::about()); - KCmdLineArgs::addCmdLineOptions(basket_options); + TDECmdLineArgs::init(argc, argv, Global::about()); + TDECmdLineArgs::addCmdLineOptions(basket_options); KUniqueApplication::addCmdLineOptions(); //KUniqueApplication app; @@ -86,12 +86,12 @@ int main(int argc, char *argv[]) MainWindow* win = new MainWindow(); Global::bnpView->handleCommandLine(); app.setMainWidget(win); -// if (!(Settings::useSystray() && KCmdLineArgs::parsedArgs() && KCmdLineArgs::parsedArgs()->isSet("start-hidden"))) +// if (!(Settings::useSystray() && TDECmdLineArgs::parsedArgs() && TDECmdLineArgs::parsedArgs()->isSet("start-hidden"))) // win->show(); if (Settings::useSystray()) { // The user wanted to not show the window (but it is already hidden by default, so we do nothing): - if (KCmdLineArgs::parsedArgs() && KCmdLineArgs::parsedArgs()->isSet("start-hidden")) + if (TDECmdLineArgs::parsedArgs() && TDECmdLineArgs::parsedArgs()->isSet("start-hidden")) ; // When the application is restored by KDE session, restore its state: else if (app.isRestored()) |