diff options
author | Timothy Pearson <[email protected]> | 2013-01-27 16:17:32 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-27 16:17:32 -0600 |
commit | b94985f2c07570910ceecd8a0e544460a0de190b (patch) | |
tree | 1e15d9016d2ca3efe29c4189bd06f0cc1e404f2a /tdeioslaves/mbox | |
parent | c9e6160b80f479c3860d7da6c0b1ec5f7e2aed05 (diff) | |
download | tdepim-b94985f2c07570910ceecd8a0e544460a0de190b.tar.gz tdepim-b94985f2c07570910ceecd8a0e544460a0de190b.zip |
Rename kioslaves
Diffstat (limited to 'tdeioslaves/mbox')
-rw-r--r-- | tdeioslaves/mbox/CMakeLists.txt | 4 | ||||
-rw-r--r-- | tdeioslaves/mbox/Makefile.am | 8 | ||||
-rw-r--r-- | tdeioslaves/mbox/README | 2 | ||||
-rw-r--r-- | tdeioslaves/mbox/mbox.cc | 4 | ||||
-rw-r--r-- | tdeioslaves/mbox/mbox.h | 2 | ||||
-rw-r--r-- | tdeioslaves/mbox/mbox.protocol | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/tdeioslaves/mbox/CMakeLists.txt b/tdeioslaves/mbox/CMakeLists.txt index 95ecdf490..e74682fac 100644 --- a/tdeioslaves/mbox/CMakeLists.txt +++ b/tdeioslaves/mbox/CMakeLists.txt @@ -26,9 +26,9 @@ link_directories( install( FILES mbox.protocol DESTINATION ${SERVICES_INSTALL_DIR} ) -##### kio_mbox (module) ######################### +##### tdeio_mbox (module) ######################### -tde_add_kpart( kio_mbox +tde_add_kpart( tdeio_mbox SOURCES mbox.cc mboxfile.cc readmbox.cc stat.cc urlinfo.cc LINK tdeio-shared diff --git a/tdeioslaves/mbox/Makefile.am b/tdeioslaves/mbox/Makefile.am index 0fc505249..eb1cb3b51 100644 --- a/tdeioslaves/mbox/Makefile.am +++ b/tdeioslaves/mbox/Makefile.am @@ -4,16 +4,16 @@ INCLUDES= $(all_includes) METASOURCES = AUTO -kde_module_LTLIBRARIES = kio_mbox.la +kde_module_LTLIBRARIES = tdeio_mbox.la -kio_mbox_la_SOURCES = \ +tdeio_mbox_la_SOURCES = \ mbox.cc \ mboxfile.cc \ readmbox.cc \ stat.cc \ urlinfo.cc -kio_mbox_la_LIBADD = $(LIB_KIO) $(LIB_QT) $(LIB_TDECORE) -kio_mbox_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) -module $(KDE_PLUGIN) +tdeio_mbox_la_LIBADD = $(LIB_KIO) $(LIB_QT) $(LIB_TDECORE) +tdeio_mbox_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) -module $(KDE_PLUGIN) noinst_HEADERS = \ mbox.h \ diff --git a/tdeioslaves/mbox/README b/tdeioslaves/mbox/README index 7adae5373..d09e81792 100644 --- a/tdeioslaves/mbox/README +++ b/tdeioslaves/mbox/README @@ -1,4 +1,4 @@ -This is a simple tdeioslave for accessing mbox-files with kio. +This is a simple tdeioslave for accessing mbox-files with tdeio. At the moment, it doesn't support locking or writing, it is just reading and listing messages. diff --git a/tdeioslaves/mbox/mbox.cc b/tdeioslaves/mbox/mbox.cc index 477ef3502..3236e14cd 100644 --- a/tdeioslaves/mbox/mbox.cc +++ b/tdeioslaves/mbox/mbox.cc @@ -43,11 +43,11 @@ extern "C" { KDE_EXPORT int kdemain(int argc, char* argv[]); } int kdemain( int argc, char * argv[] ) { KLocale::setMainCatalogue("tdelibs"); - TDEInstance instance("kio_mbox"); + TDEInstance instance("tdeio_mbox"); (void) TDEGlobal::locale(); if (argc != 4) { - fprintf(stderr, "Usage: kio_mbox protocol " + fprintf(stderr, "Usage: tdeio_mbox protocol " "domain-socket1 domain-socket2\n"); exit(-1); } diff --git a/tdeioslaves/mbox/mbox.h b/tdeioslaves/mbox/mbox.h index d6ef29aec..5834b5a07 100644 --- a/tdeioslaves/mbox/mbox.h +++ b/tdeioslaves/mbox/mbox.h @@ -67,7 +67,7 @@ public: /** * Through this functions, other class which have an instance to this - * class (classes which are part of kio_mbox) can emit an error with + * class (classes which are part of tdeio_mbox) can emit an error with * this function * @param errno The error number to be thrown * @param arg The argument of the error message of the error number. diff --git a/tdeioslaves/mbox/mbox.protocol b/tdeioslaves/mbox/mbox.protocol index 8b6b412a8..484f885bd 100644 --- a/tdeioslaves/mbox/mbox.protocol +++ b/tdeioslaves/mbox/mbox.protocol @@ -1,5 +1,5 @@ [Protocol] -exec=kio_mbox +exec=tdeio_mbox protocol=mbox input=none output=filesystem |