diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:44 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:44 -0600 |
commit | 634845c7a257ece46caaf3d46d8e28c8c091cbf4 (patch) | |
tree | 47eed4bfeb29f9b24fbcdbc961d0804dbe0d3355 /klettres | |
parent | 2362ae77640ba97b6ff6beba1636d0fb4da4b34a (diff) | |
download | tdeedu-634845c7a257ece46caaf3d46d8e28c8c091cbf4.tar.gz tdeedu-634845c7a257ece46caaf3d46d8e28c8c091cbf4.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'klettres')
-rw-r--r-- | klettres/klettres/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/klettres/klettres/main.cpp b/klettres/klettres/main.cpp index cb9a2368..d4ec18fa 100644 --- a/klettres/klettres/main.cpp +++ b/klettres/klettres/main.cpp @@ -90,8 +90,8 @@ int main(int argc, char **argv) I18N_NOOP("Kids and grown-up SVG icons"), "danny AT dannyallen.co.uk"); about.addCredit("Michael Goettsche", I18N_NOOP("Timer setting widgets"), "michael.goettsche AT kdemail.net"); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions(options); KApplication app; // see if we are starting with session management @@ -100,7 +100,7 @@ int main(int argc, char **argv) else { // no session.. just start up normally - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->count() == 0) { KLettres *widget = new KLettres; |