diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:46 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:46 -0600 |
commit | 50d6569cdef5f0aac099f5d01864bd0e14f82ae3 (patch) | |
tree | c1df4e69800be09a5873c527831b700268dd7cdf /kppp/logview/main.cpp | |
parent | 9598af160810ee4dccabad48563ddecd071c6065 (diff) | |
download | tdenetwork-50d6569cdef5f0aac099f5d01864bd0e14f82ae3.tar.gz tdenetwork-50d6569cdef5f0aac099f5d01864bd0e14f82ae3.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kppp/logview/main.cpp')
-rw-r--r-- | kppp/logview/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kppp/logview/main.cpp b/kppp/logview/main.cpp index f034c462..bd56c7fe 100644 --- a/kppp/logview/main.cpp +++ b/kppp/logview/main.cpp @@ -49,7 +49,7 @@ static KCmdLineOptions option[] = TopWidget::TopWidget() : KMainWindow(0, "") { // Check command line args for "-kppp" - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); bool kpppmode = args->isSet("kppp"); args->clear(); @@ -109,9 +109,9 @@ int main(int argc, char **argv) { aboutData.addAuthor("Bernd Wuebben",0, "wuebben@kde.org"); aboutData.addAuthor("Mario Weilguni",0, ""); aboutData.addAuthor("Harri Porten",0, "porten@kde.org"); - KCmdLineArgs::init(argc, argv, &aboutData); + TDECmdLineArgs::init(argc, argv, &aboutData); - KCmdLineArgs::addCmdLineOptions( option ); + TDECmdLineArgs::addCmdLineOptions( option ); KApplication a; |