summaryrefslogtreecommitdiffstats
path: root/akregator
diff options
context:
space:
mode:
Diffstat (limited to 'akregator')
-rw-r--r--akregator/src/CMakeLists.txt4
-rw-r--r--akregator/src/Makefile.am6
-rw-r--r--akregator/src/articleviewer.cpp6
-rw-r--r--akregator/src/frame.cpp2
-rw-r--r--akregator/src/librss/CMakeLists.txt2
-rw-r--r--akregator/src/mk4storage/CMakeLists.txt2
-rw-r--r--akregator/src/progressmanager.cpp2
7 files changed, 12 insertions, 12 deletions
diff --git a/akregator/src/CMakeLists.txt b/akregator/src/CMakeLists.txt
index 4ade48f79..b5dce8f75 100644
--- a/akregator/src/CMakeLists.txt
+++ b/akregator/src/CMakeLists.txt
@@ -12,7 +12,7 @@
tde_import( libkmime)
tde_import( ktnef )
tde_import( libkcal )
-tde_import( libkdepim )
+tde_import( libtdepim )
add_subdirectory( librss )
add_subdirectory( about )
@@ -24,7 +24,7 @@ include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_BINARY_DIR}
${CMAKE_SOURCE_DIR}
- ${CMAKE_SOURCE_DIR}/libkdepim
+ ${CMAKE_SOURCE_DIR}/libtdepim
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
diff --git a/akregator/src/Makefile.am b/akregator/src/Makefile.am
index 8506a0478..2ee3f3794 100644
--- a/akregator/src/Makefile.am
+++ b/akregator/src/Makefile.am
@@ -22,7 +22,7 @@ bin_PROGRAMS = akregator
akregator_SOURCES = main.cpp mainwindow.cpp
akregator_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
akregator_LDADD = $(LIB_KPARTS) libakregatorprivate.la
-#akregator_LDADD = $(LIB_KPARTS) libakregatorprivate.la $(top_builddir)/libkdepim/libkdepim.la
+#akregator_LDADD = $(LIB_KPARTS) libakregatorprivate.la $(top_builddir)/libtdepim/libtdepim.la
# this is where the desktop file will go
xdg_apps_DATA = akregator.desktop
@@ -77,7 +77,7 @@ libakregatorprivate_la_SOURCES = akregatorconfig.kcfgc \
utils.cpp
libakregatorprivate_la_LDFLAGS = $(all_libraries) -avoid-version -no-undefined
-libakregatorprivate_la_LIBADD = $(top_builddir)/libkdepim/libkdepim.la \
+libakregatorprivate_la_LIBADD = $(top_builddir)/libtdepim/libtdepim.la \
$(top_builddir)/akregator/src/librss/librsslocal.la $(LIB_KHTML)
#########################################################################
@@ -146,7 +146,7 @@ libakregatorpart_la_SOURCES = \
kspeech.stub
libakregatorpart_la_LDFLAGS = $(KDE_RPATH) $(KDE_PLUGIN) $(LIB_KUTILS) -avoid-version -no-undefined $(all_libraries)
-libakregatorpart_la_LIBADD = libakregatorprivate.la $(LIB_QT) $(LIB_KDECORE) $(LIB_KDEUI) $(LIB_KHTML) $(LIB_KIO) $(LIB_KPARTS) -lDCOP -L$(top_builddir)/libkdepim -lkdepim
+libakregatorpart_la_LIBADD = libakregatorprivate.la $(LIB_QT) $(LIB_KDECORE) $(LIB_KDEUI) $(LIB_KHTML) $(LIB_KIO) $(LIB_KPARTS) -lDCOP -L$(top_builddir)/libtdepim -lkdepim
# this is where the desktop file will go
partdesktopdir = $(kde_servicesdir)
diff --git a/akregator/src/articleviewer.cpp b/akregator/src/articleviewer.cpp
index 7aa745700..f8ad74bc8 100644
--- a/akregator/src/articleviewer.cpp
+++ b/akregator/src/articleviewer.cpp
@@ -39,7 +39,7 @@
#include <kshell.h>
#include <kmessagebox.h>
#include <kio/netaccess.h>
-#include <libkdepim/kfileio.h>
+#include <libtdepim/kfileio.h>
#include "aboutdata.h"
#include "akregator_run.h"
@@ -368,9 +368,9 @@ void ArticleViewer::displayAboutPage()
{
TQString location = locate("data", "akregator/about/main.html");
TQString content = KPIM::kFileToString(location);
- content = content.tqarg( locate( "data", "libkdepim/about/kde_infopage.css" ) );
+ content = content.tqarg( locate( "data", "libtdepim/about/kde_infopage.css" ) );
if ( kapp->reverseLayout() )
- content = content.tqarg( "@import \"%1\";" ).tqarg( locate( "data", "libkdepim/about/kde_infopage_rtl.css" ) );
+ content = content.tqarg( "@import \"%1\";" ).tqarg( locate( "data", "libtdepim/about/kde_infopage_rtl.css" ) );
else
content = content.tqarg( "" );
diff --git a/akregator/src/frame.cpp b/akregator/src/frame.cpp
index f0f48cea1..647f580cf 100644
--- a/akregator/src/frame.cpp
+++ b/akregator/src/frame.cpp
@@ -31,7 +31,7 @@
#include <kparts/browserextension.h>
#include <kparts/part.h>
-#include <libkdepim/progressmanager.h>
+#include <libtdepim/progressmanager.h>
#include "frame.h"
diff --git a/akregator/src/librss/CMakeLists.txt b/akregator/src/librss/CMakeLists.txt
index 893b2ef2b..c2e7a0015 100644
--- a/akregator/src/librss/CMakeLists.txt
+++ b/akregator/src/librss/CMakeLists.txt
@@ -11,7 +11,7 @@
include_directories(
${CMAKE_CURRENT_BINARY_DIR}
- ${CMAKE_SOURCE_DIR}/libkdepim
+ ${CMAKE_SOURCE_DIR}/libtdepim
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
diff --git a/akregator/src/mk4storage/CMakeLists.txt b/akregator/src/mk4storage/CMakeLists.txt
index c469d9944..99ff7a2ad 100644
--- a/akregator/src/mk4storage/CMakeLists.txt
+++ b/akregator/src/mk4storage/CMakeLists.txt
@@ -15,7 +15,7 @@ include_directories(
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_SOURCE_DIR}/akregator/src
${CMAKE_SOURCE_DIR}/akregator/src/mk4storage/metakit/include
- ${CMAKE_SOURCE_DIR}/libkdepim
+ ${CMAKE_SOURCE_DIR}/libtdepim
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
diff --git a/akregator/src/progressmanager.cpp b/akregator/src/progressmanager.cpp
index 931b04766..7831a24fd 100644
--- a/akregator/src/progressmanager.cpp
+++ b/akregator/src/progressmanager.cpp
@@ -28,7 +28,7 @@
#include <klocale.h>
#include <kstaticdeleter.h>
-#include <libkdepim/progressmanager.h>
+#include <libtdepim/progressmanager.h>
#include "feedlist.h"
#include "feed.h"