diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-30 13:51:03 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-30 13:51:03 -0600 |
commit | 09bd73fbd2ff59f5e6eb420a5c1f22d61ceeaf66 (patch) | |
tree | c77ad40eb1b04ef22a48da51b73ff8f65745894e /kode/kodemain.cpp | |
parent | bc423466604bce42cfce1e227a8f6a8892dba2d8 (diff) | |
download | tdepim-09bd73fbd2ff59f5e6eb420a5c1f22d61ceeaf66.tar.gz tdepim-09bd73fbd2ff59f5e6eb420a5c1f22d61ceeaf66.zip |
Fix a few remaining references to kio_
Diffstat (limited to 'kode/kodemain.cpp')
-rw-r--r-- | kode/kodemain.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kode/kodemain.cpp b/kode/kodemain.cpp index 288b9ac54..bf3fbb5ef 100644 --- a/kode/kodemain.cpp +++ b/kode/kodemain.cpp @@ -490,13 +490,13 @@ int create( TDECmdLineArgs *args ) code.clear(); - code += "TDEInstance instance( \"kio_" + protocol + "\" );"; + code += "TDEInstance instance( \"tdeio_" + protocol + "\" );"; code += ""; - code += "kdDebug(7000) << \"Starting kio_" + protocol + "(pid: \" << getpid() << \")\" << endl;"; + code += "kdDebug(7000) << \"Starting tdeio_" + protocol + "(pid: \" << getpid() << \")\" << endl;"; code += ""; code += "if (argc != 4) {"; code.indent(); - code += "fprintf( stderr, \"Usage: kio_" + protocol + " protocol domain-socket1 domain-socket2\\n\");"; + code += "fprintf( stderr, \"Usage: tdeio_" + protocol + " protocol domain-socket1 domain-socket2\\n\");"; code += "exit( -1 );"; code.unindent(); code += "}"; @@ -571,7 +571,7 @@ int create( TDECmdLineArgs *args ) am.addEntry( "kdelnk_DATA", protocol + ".protocol" ); KODE::AutoMakefile::Target t( "kde_module_LTLIBRARIES", - "kio_" + protocol + ".la" ); + "tdeio_" + protocol + ".la" ); t.setSources( className.lower() + ".cpp" ); t.setLibAdd( "$(LIB_KIO)" ); t.setLdFlags( "$(all_libraries) -module $(KDE_PLUGIN)" ); @@ -594,7 +594,7 @@ int create( TDECmdLineArgs *args ) KSimpleConfig protocolFile( protocolFilename ); protocolFile.setGroup( "Protocol" ); - protocolFile.writeEntry( "exec", "kio_" + protocol ); + protocolFile.writeEntry( "exec", "tdeio_" + protocol ); protocolFile.writeEntry( "protocol", protocol ); protocolFile.writeEntry( "input", "none" ); protocolFile.writeEntry( "output", "filesystem" ); |