diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:49 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:49 -0600 |
commit | ca1ec6eeaaf5744fae891a5b0696591bbaece795 (patch) | |
tree | 33109d2b950090bb7f320d20a115364514a08957 /klinkstatus | |
parent | 3240c45eaa4a785f0d90d5e712f4c51e53378117 (diff) | |
download | tdewebdev-ca1ec6eeaaf5744fae891a5b0696591bbaece795.tar.gz tdewebdev-ca1ec6eeaaf5744fae891a5b0696591bbaece795.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'klinkstatus')
-rw-r--r-- | klinkstatus/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/klinkstatus/src/main.cpp b/klinkstatus/src/main.cpp index e8ec125a..e4535188 100644 --- a/klinkstatus/src/main.cpp +++ b/klinkstatus/src/main.cpp @@ -61,8 +61,8 @@ int main(int argc, char *argv[]) about.addCredit("Jens Herden", 0, "jens@tdewebdev.org"); about.addCredit("Helge Hielscher", 0, "hhielscher@unternehmen.com"); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication app; @@ -74,7 +74,7 @@ int main(int argc, char *argv[]) else { // no session.. just start up normally - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); KLinkStatus *widget = new KLinkStatus; widget->show(); |