|
|
@ -415,7 +415,7 @@ int create( TDECmdLineArgs *args ) |
|
|
|
main.addArgument( "char **argv" ); |
|
|
|
|
|
|
|
code.clear(); |
|
|
|
code += "KAboutData aboutData(\"test\",\"Test\",\"0.1\");"; |
|
|
|
code += "TDEAboutData aboutData(\"test\",\"Test\",\"0.1\");"; |
|
|
|
code += "TDECmdLineArgs::init(argc,argv,&aboutData);"; |
|
|
|
code += "TDECmdLineArgs::addCmdLineOptions( options );"; |
|
|
|
code += ""; |
|
|
@ -490,7 +490,7 @@ int create( TDECmdLineArgs *args ) |
|
|
|
|
|
|
|
code.clear(); |
|
|
|
|
|
|
|
code += "KInstance instance( \"kio_" + protocol + "\" );"; |
|
|
|
code += "TDEInstance instance( \"kio_" + protocol + "\" );"; |
|
|
|
code += ""; |
|
|
|
code += "kdDebug(7000) << \"Starting kio_" + protocol + "(pid: \" << getpid() << \")\" << endl;"; |
|
|
|
code += ""; |
|
|
@ -609,7 +609,7 @@ int create( TDECmdLineArgs *args ) |
|
|
|
|
|
|
|
int main(int argc,char **argv) |
|
|
|
{ |
|
|
|
KAboutData aboutData( "kode", I18N_NOOP("TDE Code Generator"), "0.1" ); |
|
|
|
TDEAboutData aboutData( "kode", I18N_NOOP("TDE Code Generator"), "0.1" ); |
|
|
|
aboutData.addAuthor( "Cornelius Schumacher", 0, "schumacher@kde.org" ); |
|
|
|
|
|
|
|
TDECmdLineArgs::init( argc, argv, &aboutData ); |
|
|
|