diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:41 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:41 -0600 |
commit | f7e4bdd856bc418cebaaa7ad09010ab389fc4fbc (patch) | |
tree | d204fb3c080ceca9df732fa8341c0af65ea792c2 /kpackage/main.cpp | |
parent | 98e5087a3aa6d07990de1321f42e15bd4006c530 (diff) | |
download | tdeadmin-f7e4bdd856bc418cebaaa7ad09010ab389fc4fbc.tar.gz tdeadmin-f7e4bdd856bc418cebaaa7ad09010ab389fc4fbc.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kpackage/main.cpp')
-rw-r--r-- | kpackage/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kpackage/main.cpp b/kpackage/main.cpp index 6581df4..52731d2 100644 --- a/kpackage/main.cpp +++ b/kpackage/main.cpp @@ -84,9 +84,9 @@ int main(int argc, char **argv) VERSION, description, KAboutData::License_GPL, // VERSION, description, 0, "(c) 1999-2001, Toivo Pedaste"); - KCmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::init( argc, argv, &aboutData ); aboutData.addAuthor( "Toivo Pedaste",0, "toivo@ucs.uwa.edu.au"); - KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. + TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options. KApplication app; kpkg = 0; @@ -97,7 +97,7 @@ int main(int argc, char **argv) path = "PATH=" + path + ":/sbin:/usr/sbin:/usr/local/bin"; putenv(strdup(path.data())); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); TQString remoteHost = args->getOption("remote"); if (remoteHost.isEmpty() || remoteHost == "localhost") { |