From 4ffd16a310c74db19a5ba0c297234470f01cd7b3 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 19 Jan 2013 18:46:44 -0600 Subject: Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4 --- kenolaba/kenolaba.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kenolaba/kenolaba.cpp') diff --git a/kenolaba/kenolaba.cpp b/kenolaba/kenolaba.cpp index 754726c2..6f05ffb8 100644 --- a/kenolaba/kenolaba.cpp +++ b/kenolaba/kenolaba.cpp @@ -25,7 +25,7 @@ static KCmdLineOptions options[] = KCmdLineLastOption }; -AbTop *create(KCmdLineArgs *args) +AbTop *create(TDECmdLineArgs *args) { AbTop* top = new AbTop; if (args->isSet("port")) @@ -43,14 +43,14 @@ int main(int argc, char *argv[]) "(c) 1997-2000, Josef Weidendorfer"); aboutData.addAuthor("Josef Weidendorfer",0, "Josef.Weidendorfer@gmx.de"); aboutData.addAuthor("Robert Williams"); - 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; KGlobal::locale()->insertCatalogue("libtdegames"); /* command line handling */ - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); /* session management */ if ( app.isRestored() ) { -- cgit v1.2.1