diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:28 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-19 18:46:28 -0600 |
commit | 68a4fdfd2c2b70a7c22c4c6d6c916e604a0efac2 (patch) | |
tree | 2960e9f2a6227456ee4d6f1b135f6daa30929eac /kexi/formeditor/test/main.cpp | |
parent | 7e1f33d9f50dcae3eeed6143c602303ac360ba8d (diff) | |
download | koffice-68a4fdfd2c2b70a7c22c4c6d6c916e604a0efac2.tar.gz koffice-68a4fdfd2c2b70a7c22c4c6d6c916e604a0efac2.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kexi/formeditor/test/main.cpp')
-rw-r--r-- | kexi/formeditor/test/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kexi/formeditor/test/main.cpp b/kexi/formeditor/test/main.cpp index f4866f29..5c79f55f 100644 --- a/kexi/formeditor/test/main.cpp +++ b/kexi/formeditor/test/main.cpp @@ -43,8 +43,8 @@ int main(int argc, char **argv) about.addAuthor( "Cedric Pasteur", 0, "cedric.pasteur@free.fr"); about.addCredit( "Jarosław Staniek", "Win32 version, some icons, many fixes, ideas and bug reports", "js@iidea.pl", 0); about.addCredit( "Kristof Borrey ", "Icons", 0, "kristof.borrey@skynet.be" ); - KCmdLineArgs::init(argc, argv, &about); - KCmdLineArgs::addCmdLineOptions(options); + TDECmdLineArgs::init(argc, argv, &about); + TDECmdLineArgs::addCmdLineOptions(options); KApplication app; KGlobal::iconLoader()->addAppDir("kexi"); @@ -67,7 +67,7 @@ int main(int argc, char **argv) else { // no session.. just start up normally - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); if (args->count() >= 1) { for (int i = 0; i < args->count(); i++) |