summaryrefslogtreecommitdiffstats
path: root/tdeioslave/system
diff options
context:
space:
mode:
Diffstat (limited to 'tdeioslave/system')
-rw-r--r--tdeioslave/system/CMakeLists.txt12
-rw-r--r--tdeioslave/system/Makefile.am10
-rw-r--r--tdeioslave/system/kdedmodule/systemdirnotify.desktop2
-rw-r--r--tdeioslave/system/kdedmodule/systemdirnotifymodule.cpp2
-rw-r--r--tdeioslave/system/system.protocol2
-rw-r--r--tdeioslave/system/tdeio_system.cpp (renamed from tdeioslave/system/kio_system.cpp)6
-rw-r--r--tdeioslave/system/tdeio_system.h (renamed from tdeioslave/system/kio_system.h)0
-rw-r--r--tdeioslave/system/testsystem.cpp2
8 files changed, 18 insertions, 18 deletions
diff --git a/tdeioslave/system/CMakeLists.txt b/tdeioslave/system/CMakeLists.txt
index b9fea814d..113f9bfc3 100644
--- a/tdeioslave/system/CMakeLists.txt
+++ b/tdeioslave/system/CMakeLists.txt
@@ -29,22 +29,22 @@ link_directories(
install( FILES system.protocol DESTINATION ${SERVICES_INSTALL_DIR} )
-##### kiosystem (static) ########################
+##### tdeiosystem (static) ########################
-set( target kiosystem )
+set( target tdeiosystem )
tde_add_library( ${target} STATIC_PIC AUTOMOC
- SOURCES kio_system.cpp systemimpl.cpp
+ SOURCES tdeio_system.cpp systemimpl.cpp
)
-##### kio_system (module) #######################
+##### tdeio_system (module) #######################
-set( target kio_system )
+set( target tdeio_system )
tde_add_kpart( ${target} AUTOMOC
SOURCES dummy.cpp
- EMBED kiosystem-static
+ EMBED tdeiosystem-static
LINK tdeio-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/tdeioslave/system/Makefile.am b/tdeioslave/system/Makefile.am
index 5fc63eb5c..58d779a9b 100644
--- a/tdeioslave/system/Makefile.am
+++ b/tdeioslave/system/Makefile.am
@@ -3,11 +3,11 @@ SUBDIRS= . kdedmodule entries mimetypes
INCLUDES = $(all_includes)
METASOURCES = AUTO
-kde_module_LTLIBRARIES = kio_system.la
+kde_module_LTLIBRARIES = tdeio_system.la
-kio_system_la_SOURCES = dummy.cpp
-kio_system_la_LIBADD = libtdeiosystem.la $(LIB_KIO)
-kio_system_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -no-undefined
+tdeio_system_la_SOURCES = dummy.cpp
+tdeio_system_la_LIBADD = libtdeiosystem.la $(LIB_KIO)
+tdeio_system_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -no-undefined
dummy.cpp:
echo > dummy.cpp
@@ -15,7 +15,7 @@ dummy.cpp:
kde_services_DATA = system.protocol
noinst_LTLIBRARIES = libtdeiosystem.la
-libtdeiosystem_la_SOURCES = kio_system.cpp systemimpl.cpp
+libtdeiosystem_la_SOURCES = tdeio_system.cpp systemimpl.cpp
check_PROGRAMS = testsystem
testsystem_SOURCES = testsystem.cpp
diff --git a/tdeioslave/system/kdedmodule/systemdirnotify.desktop b/tdeioslave/system/kdedmodule/systemdirnotify.desktop
index 31379df76..e319717eb 100644
--- a/tdeioslave/system/kdedmodule/systemdirnotify.desktop
+++ b/tdeioslave/system/kdedmodule/systemdirnotify.desktop
@@ -56,7 +56,7 @@ Name[vi]=Trình thông báo URL hệ thống KDED
Name[wa]=Notifiaedje KDED d' URL sistinme di båze
Name[zh_CN]=KDED 系统基 URL 通知器
Name[zh_TW]=KDED 系統基礎 URL 通知程式
-Comment=Provides change notification for folders monitored by the system:/ kio plugin
+Comment=Provides change notification for folders monitored by the system:/ tdeio plugin
ServiceTypes=KDEDModule
X-TDE-ModuleType=Library
X-TDE-Library=systemdirnotify
diff --git a/tdeioslave/system/kdedmodule/systemdirnotifymodule.cpp b/tdeioslave/system/kdedmodule/systemdirnotifymodule.cpp
index 64e8c8d62..9f9b422bd 100644
--- a/tdeioslave/system/kdedmodule/systemdirnotifymodule.cpp
+++ b/tdeioslave/system/kdedmodule/systemdirnotifymodule.cpp
@@ -30,7 +30,7 @@ SystemDirNotifyModule::SystemDirNotifyModule(const TQCString &obj)
extern "C" {
KDE_EXPORT KDEDModule *create_systemdirnotify(const TQCString &obj)
{
- TDEGlobal::locale()->insertCatalogue("kio_system");
+ TDEGlobal::locale()->insertCatalogue("tdeio_system");
return new SystemDirNotifyModule(obj);
}
}
diff --git a/tdeioslave/system/system.protocol b/tdeioslave/system/system.protocol
index 9aa6fbd6c..12f6c5351 100644
--- a/tdeioslave/system/system.protocol
+++ b/tdeioslave/system/system.protocol
@@ -1,5 +1,5 @@
[Protocol]
-exec=kio_system
+exec=tdeio_system
protocol=system
input=none
output=filesystem
diff --git a/tdeioslave/system/kio_system.cpp b/tdeioslave/system/tdeio_system.cpp
index 61f724093..3e48e85f5 100644
--- a/tdeioslave/system/kio_system.cpp
+++ b/tdeioslave/system/tdeio_system.cpp
@@ -27,7 +27,7 @@
#include <tqeventloop.h>
-#include "kio_system.h"
+#include "tdeio_system.h"
static const KCmdLineOptions options[] =
@@ -43,7 +43,7 @@ extern "C" {
{
// TDEApplication is necessary to use other ioslaves
putenv(strdup("SESSION_MANAGER="));
- TDECmdLineArgs::init(argc, argv, "kio_system", 0, 0, 0, 0);
+ TDECmdLineArgs::init(argc, argv, "tdeio_system", 0, 0, 0, 0);
TDECmdLineArgs::addCmdLineOptions( options );
TDEApplication app( false, false );
// We want to be anonymous even if we use DCOP
@@ -186,4 +186,4 @@ void SystemProtocol::listRoot()
}
-//#include "kio_system.moc"
+//#include "tdeio_system.moc"
diff --git a/tdeioslave/system/kio_system.h b/tdeioslave/system/tdeio_system.h
index fb3423889..fb3423889 100644
--- a/tdeioslave/system/kio_system.h
+++ b/tdeioslave/system/tdeio_system.h
diff --git a/tdeioslave/system/testsystem.cpp b/tdeioslave/system/testsystem.cpp
index 7be993ff8..9310a49b4 100644
--- a/tdeioslave/system/testsystem.cpp
+++ b/tdeioslave/system/testsystem.cpp
@@ -17,7 +17,7 @@
Boston, MA 02110-1301, USA.
*/
-#include "kio_system.h"
+#include "tdeio_system.h"
#include "testsystem.h"
#include <config.h>