diff options
-rw-r--r-- | doc/lisa/index.docbook | 2 | ||||
-rw-r--r-- | kopete/kopete/kconf_update/kopete-account-kconf_update.sh | 2 | ||||
-rw-r--r-- | kopete/kopete/kconf_update/kopete-pluginloader2.sh | 2 | ||||
-rw-r--r-- | lanbrowsing/kio_lan/kio_lan.cpp | 2 | ||||
-rw-r--r-- | lanbrowsing/lisa/README | 2 | ||||
-rw-r--r-- | lanbrowsing/lisa/netmanager.cpp | 4 |
6 files changed, 7 insertions, 7 deletions
diff --git a/doc/lisa/index.docbook b/doc/lisa/index.docbook index f135a737..6758497b 100644 --- a/doc/lisa/index.docbook +++ b/doc/lisa/index.docbook @@ -594,7 +594,7 @@ for <term><option>-K</option>, <option>--kde2</option></term> <listitem> <para>Looks for the file <filename>lisarc</filename> in every folder -returned by running <userinput><command>kde-config</command> +returned by running <userinput><command>tde-config</command> <option>--path</option> <parameter>config</parameter></userinput></para> </listitem> </varlistentry> diff --git a/kopete/kopete/kconf_update/kopete-account-kconf_update.sh b/kopete/kopete/kconf_update/kopete-account-kconf_update.sh index 4b2e086e..e47477b8 100644 --- a/kopete/kopete/kconf_update/kopete-account-kconf_update.sh +++ b/kopete/kopete/kconf_update/kopete-account-kconf_update.sh @@ -2,7 +2,7 @@ IFS=: SUFF=kconf_update_bin/kopete-account-kconf_update -for path in `kde-config --path lib`; do +for path in `tde-config --path lib`; do if test -x "$path/$SUFF"; then exec "$path/$SUFF" fi diff --git a/kopete/kopete/kconf_update/kopete-pluginloader2.sh b/kopete/kopete/kconf_update/kopete-pluginloader2.sh index e058dcf1..a6144152 100644 --- a/kopete/kopete/kconf_update/kopete-pluginloader2.sh +++ b/kopete/kopete/kconf_update/kopete-pluginloader2.sh @@ -2,7 +2,7 @@ IFS=: SUFF=kconf_update_bin/kopete-pluginloader2-kconf_update -for path in `kde-config --path lib`; do +for path in `tde-config --path lib`; do if test -x "$path/$SUFF"; then exec "$path/$SUFF" fi diff --git a/lanbrowsing/kio_lan/kio_lan.cpp b/lanbrowsing/kio_lan/kio_lan.cpp index 55cc13b4..870f01f8 100644 --- a/lanbrowsing/kio_lan/kio_lan.cpp +++ b/lanbrowsing/kio_lan/kio_lan.cpp @@ -302,7 +302,7 @@ int LANProtocol::rlanReadDataFromServer() return 0; } //wait a moment - //reslisa starts kde-config, then does up to 64 + //reslisa starts tde-config, then does up to 64 //name lookups and then starts to ping //results won't be available before this is done kdDebug(7101)<<"sleeping..."<<endl; diff --git a/lanbrowsing/lisa/README b/lanbrowsing/lisa/README index d6d33156..0ee2143d 100644 --- a/lanbrowsing/lisa/README +++ b/lanbrowsing/lisa/README @@ -386,7 +386,7 @@ For reslisa the file is named reslisarc instead lisarc. then for $TDEDIR/share/config/lisarc -K, --kde2 looks for the file lisarc in every directory - returned by running "kde-config --path config" + returned by running "tde-config --path config" -c, --config=FILE read this and no other configuration file diff --git a/lanbrowsing/lisa/netmanager.cpp b/lanbrowsing/lisa/netmanager.cpp index 092d5180..ecb9b23d 100644 --- a/lanbrowsing/lisa/netmanager.cpp +++ b/lanbrowsing/lisa/netmanager.cpp @@ -349,10 +349,10 @@ MyString NetManager::getConfigFileName() } else if (m_configStyle==KDE2CONFIGSTYLE) { - FILE *kdeConfig=popen("kde-config --path config","r"); + FILE *kdeConfig=popen("tde-config --path config","r"); if (kdeConfig==0) { - std::cout<<"could not execute kde-config, check your KDE 2 installation\n"<<std::endl; + std::cout<<"could not execute tde-config, check your KDE 2 installation\n"<<std::endl; return ""; }; //this should be large enough |