diff options
Diffstat (limited to 'kode/kodemain.cpp')
-rw-r--r-- | kode/kodemain.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kode/kodemain.cpp b/kode/kodemain.cpp index bf3fbb5ef..bfab6aa81 100644 --- a/kode/kodemain.cpp +++ b/kode/kodemain.cpp @@ -46,7 +46,7 @@ #include <iostream> -static const KCmdLineOptions options[] = +static const TDECmdLineOptions options[] = { { "c", 0, 0 }, { "create-class", I18N_NOOP("Create class"), 0 }, @@ -70,7 +70,7 @@ static const KCmdLineOptions options[] = { "singleton", I18N_NOOP("Create a singleton class"), 0 }, { "protocol", I18N_NOOP("tdeioslave protocol"), 0 }, { "+[filename]", I18N_NOOP("Source code file name"), 0 }, - KCmdLineLastOption + TDECmdLineLastOption }; void addPropertyFunctions( TQString &out, const TQString &type, @@ -403,10 +403,10 @@ int create( TDECmdLineArgs *args ) file.addInclude( "kcmdlineargs" ); KODE::Code code; - code += "static const KCmdLineOptions options[] ="; + code += "static const TDECmdLineOptions options[] ="; code += "{"; code += " { \"verbose\", \"Verbose output\", 0 },"; - code += " KCmdLineLastOption"; + code += " TDECmdLineLastOption"; code += "};"; file.addFileCode( code ); |