summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:26 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:26 -0600
commit555676e04c1c378de30f2a1113f7b90b4af5bce0 (patch)
treeba65510cf27df5fc49b4eaa200de7f1a1610a203
parent2add388a096b657e3250b814f2fd6bc385b8081e (diff)
downloadkdpkg-555676e0.tar.gz
kdpkg-555676e0.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
-rw-r--r--kdpkg-install/main.cpp6
-rw-r--r--kdpkg/main.cpp6
2 files changed, 6 insertions, 6 deletions
diff --git a/kdpkg-install/main.cpp b/kdpkg-install/main.cpp
index ca10f66..c1c6bdc 100644
--- a/kdpkg-install/main.cpp
+++ b/kdpkg-install/main.cpp
@@ -52,8 +52,8 @@ int main(int argc, char **argv)
- KCmdLineArgs::init(argc, argv, about);
- KCmdLineArgs::addCmdLineOptions( options );
+ TDECmdLineArgs::init(argc, argv, about);
+ TDECmdLineArgs::addCmdLineOptions( options );
KApplication app;
install *mainWin = 0;
@@ -61,7 +61,7 @@ int main(int argc, char **argv)
if (!app.isRestored())
{
// no session.. just start up normally
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
TQString url;
diff --git a/kdpkg/main.cpp b/kdpkg/main.cpp
index 3db3fc5..d79f6a7 100644
--- a/kdpkg/main.cpp
+++ b/kdpkg/main.cpp
@@ -55,8 +55,8 @@ int main(int argc, char **argv)
- KCmdLineArgs::init(argc, argv, about);
- KCmdLineArgs::addCmdLineOptions( options );
+ TDECmdLineArgs::init(argc, argv, about);
+ TDECmdLineArgs::addCmdLineOptions( options );
KApplication app;
kdpkg *mainWin = 0;
@@ -64,7 +64,7 @@ int main(int argc, char **argv)
if (!app.isRestored())
{
// no session.. just start up normally
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
TQString url;