diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-09-03 20:02:55 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-09-03 21:02:00 +0200 |
commit | 533bad2a1503973aaf8186691422c2eda91d02d4 (patch) | |
tree | f7e52f62416048859aa9bde8425e20aac0e7c669 /korn/tdeconf_update | |
parent | 8144d5434bbd1c4448a37695aed6ad3d348043d8 (diff) | |
download | tdepim-533bad2a1503973aaf8186691422c2eda91d02d4.tar.gz tdepim-533bad2a1503973aaf8186691422c2eda91d02d4.zip |
Additional k => tde renaming and fixes
Diffstat (limited to 'korn/tdeconf_update')
-rw-r--r-- | korn/tdeconf_update/Makefile.am | 2 | ||||
-rw-r--r-- | korn/tdeconf_update/korn-3-4-config_change.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/korn/tdeconf_update/Makefile.am b/korn/tdeconf_update/Makefile.am index 214f0c81b..a30fb244d 100644 --- a/korn/tdeconf_update/Makefile.am +++ b/korn/tdeconf_update/Makefile.am @@ -8,5 +8,5 @@ tdeconf_PROGRAMS = korn-3-4-config_change tdeconfdir = $(libdir)/tdeconf_update_bin korn_3_4_config_change_SOURCES = korn-3-4-config_change.cpp -korn_3_4_config_change_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +korn_3_4_config_change_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor korn_3_4_config_change_LDADD = $(LIB_QT) diff --git a/korn/tdeconf_update/korn-3-4-config_change.cpp b/korn/tdeconf_update/korn-3-4-config_change.cpp index 7eff3ad38..67639362b 100644 --- a/korn/tdeconf_update/korn-3-4-config_change.cpp +++ b/korn/tdeconf_update/korn-3-4-config_change.cpp @@ -77,7 +77,7 @@ void printToprint( TQTextStream &out, TQMap<TQString,TQString> &to_printed, cons { out << "mailbox=" << to_printed[ "command" ] << endl; } - else if( type == "kio" ) + else if( type == "tdeio" ) { out << "host=" << to_printed[ "host" ] << endl; out << "port=" << to_printed[ "port" ] << endl; @@ -202,7 +202,7 @@ int main( int, char** ) { to_printed.insert( key_value.cap( 1 ), key_value.cap( 2 ) ); } - else if( key_value.cap( 1 ) == "type" && key_value.cap( 2 ) != "kio" ) + else if( key_value.cap( 1 ) == "type" && key_value.cap( 2 ) != "tdeio" ) { out << currentGroup2 << endl; if( key_value.cap( 2 ) == "imap4" ) @@ -212,9 +212,9 @@ int main( int, char** ) type = key_value.cap( 2 ); } - else if( key_value.cap( 1 ) == "type" && key_value.cap( 2 ) == "kio" ) + else if( key_value.cap( 1 ) == "type" && key_value.cap( 2 ) == "tdeio" ) { - type = "kio"; + type = "tdeio"; } else if( key_value.cap( 1 ) == "displaystyle" ) { |