diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:48 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:48 -0600 |
commit | 6fdacb9c2e3adb3b5da38cd8a22afc1668e1d36b (patch) | |
tree | a6a367ba18807833d8f90cb6b233e7bdb3f007cc /kedit | |
parent | ba743d360eabb06e6ffbafd2c7bc833dd985aa0c (diff) | |
download | tdeutils-6fdacb9c2e3adb3b5da38cd8a22afc1668e1d36b.tar.gz tdeutils-6fdacb9c2e3adb3b5da38cd8a22afc1668e1d36b.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kedit')
-rw-r--r-- | kedit/kedit.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kedit/kedit.cpp b/kedit/kedit.cpp index bbafc7a..b88c014 100644 --- a/kedit/kedit.cpp +++ b/kedit/kedit.cpp @@ -1267,8 +1267,8 @@ extern "C" KDE_EXPORT int kdemain (int argc, char **argv) KEDITVERSION, description, KAboutData::License_GPL, "(c) 1997-2000, Bernd Johannes Wuebben"); aboutData.addAuthor("Bernd Johannes Wuebben",0, "wuebben@kde.org"); - KCmdLineArgs::init( argc, argv, &aboutData ); - KCmdLineArgs::addCmdLineOptions( options ); + TDECmdLineArgs::init( argc, argv, &aboutData ); + TDECmdLineArgs::addCmdLineOptions( options ); KApplication a; //CT KIO::Job::initStatic(); @@ -1286,7 +1286,7 @@ extern "C" KDE_EXPORT int kdemain (int argc, char **argv) else { have_top_window = false; - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); const TQString encoding = args->getOption("encoding"); const bool doEncoding = args->isSet("encoding") && |