diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:26 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:26 -0600 |
commit | 2b8b39e544fc06d9c661a873a2afda6a9aceca3c (patch) | |
tree | ae6e01ad783822e07e755d251b46060f6122dba9 | |
parent | 3111a1906f74eb89dfffe74aaef6d1ea3c846195 (diff) | |
download | kdirstat-2b8b39e544fc06d9c661a873a2afda6a9aceca3c.tar.gz kdirstat-2b8b39e544fc06d9c661a873a2afda6a9aceca3c.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
-rw-r--r-- | kdirstat/kdirstatmain.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kdirstat/kdirstatmain.cpp b/kdirstat/kdirstatmain.cpp index dd957db..a75c17d 100644 --- a/kdirstat/kdirstatmain.cpp +++ b/kdirstat/kdirstatmain.cpp @@ -76,8 +76,8 @@ int main(int argc, char *argv[]) I18N_NOOP( "for showing that all the work involved with such a project\n" "is really appreciated out there.\n" ) ); - KCmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. + TDECmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options. KApplication app; @@ -90,7 +90,7 @@ int main(int argc, char *argv[]) KDirStatApp *kdirstat = new KDirStatApp(); kdirstat->show(); - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if ( args->count() ) { |