summaryrefslogtreecommitdiffstats
path: root/tderesources/slox
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-17 12:20:38 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-17 12:20:38 -0600
commitda6f54f964c028f12c91450617d72451b1cd8e2c (patch)
treee0daccebcf8ce715d50c8a950ceb5153ad195f73 /tderesources/slox
parent513d0163e99d4447deb274b9f0799bb390f26cfc (diff)
downloadtdepim-da6f54f964c028f12c91450617d72451b1cd8e2c.tar.gz
tdepim-da6f54f964c028f12c91450617d72451b1cd8e2c.zip
Fix FTBFS
Diffstat (limited to 'tderesources/slox')
-rw-r--r--tderesources/slox/CMakeLists.txt4
-rw-r--r--tderesources/slox/Makefile.am8
-rw-r--r--tderesources/slox/tdeabcresourceslox.cpp (renamed from tderesources/slox/kabcresourceslox.cpp)6
-rw-r--r--tderesources/slox/tdeabcresourceslox.h (renamed from tderesources/slox/kabcresourceslox.h)0
-rw-r--r--tderesources/slox/tdeabcresourceslox_plugin.cpp (renamed from tderesources/slox/kabcresourceslox_plugin.cpp)4
-rw-r--r--tderesources/slox/tdeabcresourcesloxconfig.cpp (renamed from tderesources/slox/kabcresourcesloxconfig.cpp)8
-rw-r--r--tderesources/slox/tdeabcresourcesloxconfig.h (renamed from tderesources/slox/kabcresourcesloxconfig.h)0
-rw-r--r--tderesources/slox/tdeabcsloxprefs.kcfgc (renamed from tderesources/slox/kabcsloxprefs.kcfgc)0
-rw-r--r--tderesources/slox/webdavhandler.cpp2
9 files changed, 16 insertions, 16 deletions
diff --git a/tderesources/slox/CMakeLists.txt b/tderesources/slox/CMakeLists.txt
index 47d6dc703..0d932ecb6 100644
--- a/tderesources/slox/CMakeLists.txt
+++ b/tderesources/slox/CMakeLists.txt
@@ -41,7 +41,7 @@ tde_add_kpart( kcal_slox AUTOMOC
##### tdeabc_slox (module) ########################
tde_add_kpart( tdeabc_slox AUTOMOC
- SOURCES kabcresourceslox_plugin.cpp
+ SOURCES tdeabcresourceslox_plugin.cpp
LINK tdeabc_slox-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
@@ -63,7 +63,7 @@ tde_add_library( kslox SHARED AUTOMOC
tde_add_library( tdeabc_slox SHARED AUTOMOC
SOURCES
- kabcresourceslox.cpp kabcresourcesloxconfig.cpp kabcsloxprefs.kcfgc
+ tdeabcresourceslox.cpp tdeabcresourcesloxconfig.cpp tdeabcsloxprefs.kcfgc
VERSION 0.0.0
LINK kslox-shared
DESTINATION ${LIB_INSTALL_DIR}
diff --git a/tderesources/slox/Makefile.am b/tderesources/slox/Makefile.am
index ee8a47f1c..6175de162 100644
--- a/tderesources/slox/Makefile.am
+++ b/tderesources/slox/Makefile.am
@@ -15,10 +15,10 @@ libkcal_slox_la_SOURCES = kcalresourceslox.cpp kcalresourcesloxconfig.cpp \
libkcal_slox_la_LDFLAGS = $(all_libraries)
libkcal_slox_la_LIBADD = libkslox.la $(top_builddir)/libkcal/libkcal.la
-libtdeabc_slox_la_SOURCES = kabcresourceslox.cpp kabcresourcesloxconfig.cpp \
- kabcsloxprefs.kcfgc
+libtdeabc_slox_la_SOURCES = tdeabcresourceslox.cpp tdeabcresourcesloxconfig.cpp \
+ tdeabcsloxprefs.kcfgc
libtdeabc_slox_la_LDFLAGS = $(all_libraries)
-libtdeabc_slox_la_LIBADD = libkslox.la -lkabc
+libtdeabc_slox_la_LIBADD = libkslox.la -ltdeabc
kde_module_LTLIBRARIES = kcal_slox.la tdeabc_slox.la
@@ -27,7 +27,7 @@ kcal_slox_la_SOURCES = kcalresourceslox_plugin.cpp
kcal_slox_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
kcal_slox_la_LIBADD = libkcal_slox.la
-tdeabc_slox_la_SOURCES = kabcresourceslox_plugin.cpp
+tdeabc_slox_la_SOURCES = tdeabcresourceslox_plugin.cpp
tdeabc_slox_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
tdeabc_slox_la_LIBADD = libtdeabc_slox.la
diff --git a/tderesources/slox/kabcresourceslox.cpp b/tderesources/slox/tdeabcresourceslox.cpp
index 17b282969..77fea0b01 100644
--- a/tderesources/slox/kabcresourceslox.cpp
+++ b/tderesources/slox/tdeabcresourceslox.cpp
@@ -34,9 +34,9 @@
#include "webdavhandler.h"
#include "sloxaccounts.h"
-#include "kabcsloxprefs.h"
+#include "tdeabcsloxprefs.h"
-#include "kabcresourceslox.h"
+#include "tdeabcresourceslox.h"
using namespace KABC;
@@ -681,4 +681,4 @@ bool ResourceSlox::readOnly() const
return true;
}
-#include "kabcresourceslox.moc"
+#include "tdeabcresourceslox.moc"
diff --git a/tderesources/slox/kabcresourceslox.h b/tderesources/slox/tdeabcresourceslox.h
index b79167a16..b79167a16 100644
--- a/tderesources/slox/kabcresourceslox.h
+++ b/tderesources/slox/tdeabcresourceslox.h
diff --git a/tderesources/slox/kabcresourceslox_plugin.cpp b/tderesources/slox/tdeabcresourceslox_plugin.cpp
index 93db76b3a..b876c8597 100644
--- a/tderesources/slox/kabcresourceslox_plugin.cpp
+++ b/tderesources/slox/tdeabcresourceslox_plugin.cpp
@@ -18,8 +18,8 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-#include "kabcresourceslox.h"
-#include "kabcresourcesloxconfig.h"
+#include "tdeabcresourceslox.h"
+#include "tdeabcresourcesloxconfig.h"
#include <tdeglobal.h>
#include <tdelocale.h>
diff --git a/tderesources/slox/kabcresourcesloxconfig.cpp b/tderesources/slox/tdeabcresourcesloxconfig.cpp
index 72ba39d01..919d156ae 100644
--- a/tderesources/slox/kabcresourcesloxconfig.cpp
+++ b/tderesources/slox/tdeabcresourcesloxconfig.cpp
@@ -18,10 +18,10 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-#include "kabcresourcesloxconfig.h"
+#include "tdeabcresourcesloxconfig.h"
-#include "kabcresourceslox.h"
-#include "kabcsloxprefs.h"
+#include "tdeabcresourceslox.h"
+#include "tdeabcsloxprefs.h"
#include "sloxbase.h"
#include "sloxfolder.h"
#include "sloxfolderdialog.h"
@@ -118,4 +118,4 @@ void KABC::ResourceSloxConfig::selectAddressFolder( )
mFolderId = dialog->selectedFolder();
}
-#include "kabcresourcesloxconfig.moc"
+#include "tdeabcresourcesloxconfig.moc"
diff --git a/tderesources/slox/kabcresourcesloxconfig.h b/tderesources/slox/tdeabcresourcesloxconfig.h
index 9cd54d831..9cd54d831 100644
--- a/tderesources/slox/kabcresourcesloxconfig.h
+++ b/tderesources/slox/tdeabcresourcesloxconfig.h
diff --git a/tderesources/slox/kabcsloxprefs.kcfgc b/tderesources/slox/tdeabcsloxprefs.kcfgc
index 70c006f52..70c006f52 100644
--- a/tderesources/slox/kabcsloxprefs.kcfgc
+++ b/tderesources/slox/tdeabcsloxprefs.kcfgc
diff --git a/tderesources/slox/webdavhandler.cpp b/tderesources/slox/webdavhandler.cpp
index 65caebf23..f3f33d610 100644
--- a/tderesources/slox/webdavhandler.cpp
+++ b/tderesources/slox/webdavhandler.cpp
@@ -291,5 +291,5 @@ void WebdavHandler::setSloxAttributes( KCal::Incidence *i )
void WebdavHandler::setSloxAttributes( KABC::Addressee & )
{
- // FIXME: libkabc doesn't allow to set an individual addressee to read-only
+ // FIXME: libtdeabc doesn't allow to set an individual addressee to read-only
}