diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 15:11:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 15:11:21 -0600 |
commit | 472156a41b1348c714986c772759ad950fffbe75 (patch) | |
tree | 86369dab3bbe3d52c49051665bdfb49b9dfc16e3 /tdeioslave/pop3 | |
parent | 3e891e81335e5243583dab27faeebf001b8139a6 (diff) | |
download | tdebase-472156a41b1348c714986c772759ad950fffbe75.tar.gz tdebase-472156a41b1348c714986c772759ad950fffbe75.zip |
Rename kioslaves
Diffstat (limited to 'tdeioslave/pop3')
-rw-r--r-- | tdeioslave/pop3/CMakeLists.txt | 4 | ||||
-rw-r--r-- | tdeioslave/pop3/Makefile.am | 8 | ||||
-rw-r--r-- | tdeioslave/pop3/pop3.cc | 6 | ||||
-rw-r--r-- | tdeioslave/pop3/pop3.protocol | 2 | ||||
-rw-r--r-- | tdeioslave/pop3/pop3s.protocol | 2 |
5 files changed, 11 insertions, 11 deletions
diff --git a/tdeioslave/pop3/CMakeLists.txt b/tdeioslave/pop3/CMakeLists.txt index a5fcaf2da..fb0dbcbb1 100644 --- a/tdeioslave/pop3/CMakeLists.txt +++ b/tdeioslave/pop3/CMakeLists.txt @@ -26,9 +26,9 @@ link_directories( install( FILES pop3.protocol pop3s.protocol DESTINATION ${SERVICES_INSTALL_DIR} ) -##### kio_pop3 (module) ######################### +##### tdeio_pop3 (module) ######################### -set( target kio_pop3 ) +set( target tdeio_pop3 ) tde_add_kpart( ${target} AUTOMOC SOURCES pop3.cc diff --git a/tdeioslave/pop3/Makefile.am b/tdeioslave/pop3/Makefile.am index 86d649b66..1bd5c95e5 100644 --- a/tdeioslave/pop3/Makefile.am +++ b/tdeioslave/pop3/Makefile.am @@ -2,11 +2,11 @@ INCLUDES= -I$(srcdir)/../.. -I$(srcdir)/.. $(SSL_INCLUDES) $(all_includes) ####### Files -kde_module_LTLIBRARIES = kio_pop3.la +kde_module_LTLIBRARIES = tdeio_pop3.la -kio_pop3_la_SOURCES = pop3.cc -kio_pop3_la_LIBADD = $(LIB_KIO) $(SASL2_LIBS) -kio_pop3_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) +tdeio_pop3_la_SOURCES = pop3.cc +tdeio_pop3_la_LIBADD = $(LIB_KIO) $(SASL2_LIBS) +tdeio_pop3_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) noinst_HEADERS = pop3.h diff --git a/tdeioslave/pop3/pop3.cc b/tdeioslave/pop3/pop3.cc index e4518da08..9b45f47f3 100644 --- a/tdeioslave/pop3/pop3.cc +++ b/tdeioslave/pop3/pop3.cc @@ -92,7 +92,7 @@ int kdemain(int argc, char **argv) { if (argc != 4) { - POP3_DEBUG << "Usage: kio_pop3 protocol domain-socket1 domain-socket2" + POP3_DEBUG << "Usage: tdeio_pop3 protocol domain-socket1 domain-socket2" << endl; return -1; } @@ -104,7 +104,7 @@ int kdemain(int argc, char **argv) } #endif - TDEInstance instance("kio_pop3"); + TDEInstance instance("tdeio_pop3"); POP3Protocol *slave; // Are we looking to use SSL? @@ -599,7 +599,7 @@ int POP3Protocol::loginSASL( TDEIO::AuthInfo &ai ) #else if (metaData("auth") == "SASL") { closeConnection(); - error(ERR_COULD_NOT_LOGIN, i18n("SASL authentication is not compiled into kio_pop3.")); + error(ERR_COULD_NOT_LOGIN, i18n("SASL authentication is not compiled into tdeio_pop3.")); return -1; } return 1; //if SASL not explicitly required, try another method (USER/PASS) diff --git a/tdeioslave/pop3/pop3.protocol b/tdeioslave/pop3/pop3.protocol index 23560fa48..7aa3e442f 100644 --- a/tdeioslave/pop3/pop3.protocol +++ b/tdeioslave/pop3/pop3.protocol @@ -1,5 +1,5 @@ [Protocol] -exec=kio_pop3 +exec=tdeio_pop3 protocol=pop3 Capabilities=SASL input=none diff --git a/tdeioslave/pop3/pop3s.protocol b/tdeioslave/pop3/pop3s.protocol index 8bcf0c899..772f72d37 100644 --- a/tdeioslave/pop3/pop3s.protocol +++ b/tdeioslave/pop3/pop3s.protocol @@ -1,5 +1,5 @@ [Protocol] -exec=kio_pop3 +exec=tdeio_pop3 protocol=pop3s Capabilities=SASL input=none |