diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 6 | ||||
-rw-r--r-- | src/klocateconfig.kcfgc | 2 | ||||
-rw-r--r-- | src/locate.protocol | 2 | ||||
-rw-r--r-- | src/locater.protocol | 2 | ||||
-rw-r--r-- | src/rlocate.protocol | 2 | ||||
-rw-r--r-- | src/tdeio_locate.cpp | 14 | ||||
-rw-r--r-- | src/tdeio_locate.h | 4 | ||||
-rw-r--r-- | src/tdeio_locate.kcfg | 2 |
8 files changed, 17 insertions, 17 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0ac1254..0e58011 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -31,13 +31,13 @@ install( FILES rlocate.protocol DESTINATION ${SERVICES_INSTALL_DIR} ) install( FILES locate.desktop DESTINATION ${SERVICES_INSTALL_DIR}/searchproviders ) -##### kio_locate ############################## +##### tdeio_locate ############################## -set( target kio_locate ) +set( target tdeio_locate ) set( ${target}_SRCS klocateconfig.kcfgc klocateconfigwidget.ui klocateconfigfilterwidget.ui - klocateconfiglocatewidget.ui kio_locate.cpp locater.cpp pattern.cpp + klocateconfiglocatewidget.ui tdeio_locate.cpp locater.cpp pattern.cpp ) tde_add_kpart( ${target} AUTOMOC diff --git a/src/klocateconfig.kcfgc b/src/klocateconfig.kcfgc index 270779c..4e860df 100644 --- a/src/klocateconfig.kcfgc +++ b/src/klocateconfig.kcfgc @@ -1,5 +1,5 @@ # Code generation options for tdeconfig_compiler -File=kio_locate.kcfg +File=tdeio_locate.kcfg ClassName=KLocateConfig Singleton=true Mutators=true diff --git a/src/locate.protocol b/src/locate.protocol index 61e4810..5fc528b 100644 --- a/src/locate.protocol +++ b/src/locate.protocol @@ -1,5 +1,5 @@ [Protocol] -exec=kio_locate +exec=tdeio_locate protocol=locate input=none output=filesystem diff --git a/src/locater.protocol b/src/locater.protocol index b40c6a2..3e742b8 100644 --- a/src/locater.protocol +++ b/src/locater.protocol @@ -1,5 +1,5 @@ [Protocol] -exec=kio_locate +exec=tdeio_locate protocol=locater input=none output=filesystem diff --git a/src/rlocate.protocol b/src/rlocate.protocol index a994b32..a49daf9 100644 --- a/src/rlocate.protocol +++ b/src/rlocate.protocol @@ -1,5 +1,5 @@ [Protocol] -exec=kio_locate +exec=tdeio_locate protocol=rlocate input=none output=filesystem diff --git a/src/tdeio_locate.cpp b/src/tdeio_locate.cpp index 9f39be8..b06ab90 100644 --- a/src/tdeio_locate.cpp +++ b/src/tdeio_locate.cpp @@ -39,7 +39,7 @@ #include <kuser.h> #include <tqfile.h> -#include "kio_locate.h" +#include "tdeio_locate.h" #include "klocateconfig.h" #include "klocateconfigwidget.h" #include "klocateconfigfilterwidget.h" @@ -264,7 +264,7 @@ static const UDSEntry pathToUDSEntry(const TQString& path, const TQString& displ // INITIALIZATION LocateProtocol::LocateProtocol(const TQCString &pool_socket, const TQCString &app_socket) - : SlaveBase("kio_locate", pool_socket, app_socket) + : SlaveBase("tdeio_locate", pool_socket, app_socket) { DEBUGSTR << "LocateProtocol::LocateProtocol()" << endl; @@ -1015,22 +1015,22 @@ extern "C" { // We use TDEApplication instead of TDEInstance here, because we use a // config dialog and such gui stuff. - TDEApplication app(argc, argv, "kio_locate", false, true); + TDEApplication app(argc, argv, "tdeio_locate", false, true); - DEBUGSTR << "*** Starting kio_locate " << endl; + DEBUGSTR << "*** Starting tdeio_locate " << endl; if (argc != 4) { - DEBUGSTR << "Usage: kio_locate protocol domain-socket1 domain-socket2" << endl; + DEBUGSTR << "Usage: tdeio_locate protocol domain-socket1 domain-socket2" << endl; exit(-1); } LocateProtocol slave(argv[2], argv[3]); slave.dispatchLoop(); - DEBUGSTR << "*** kio_locate Done" << endl; + DEBUGSTR << "*** tdeio_locate Done" << endl; return 0; } } -#include "kio_locate.moc" +#include "tdeio_locate.moc" diff --git a/src/tdeio_locate.h b/src/tdeio_locate.h index 13097cd..926e7f4 100644 --- a/src/tdeio_locate.h +++ b/src/tdeio_locate.h @@ -56,8 +56,8 @@ * of course). */ -#ifndef _kio_locate_H_ -#define _kio_locate_H_ +#ifndef _tdeio_locate_H_ +#define _tdeio_locate_H_ #include <tqcstring.h> #include <tqstring.h> diff --git a/src/tdeio_locate.kcfg b/src/tdeio_locate.kcfg index e0fdddc..f0525e7 100644 --- a/src/tdeio_locate.kcfg +++ b/src/tdeio_locate.kcfg @@ -4,7 +4,7 @@ xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" > - <kcfgfile name="kio_locaterc"/> + <kcfgfile name="tdeio_locaterc"/> <include>klocale.h</include> <group name="General"> <entry name="caseSensitivity" type="Int"> |