summaryrefslogtreecommitdiffstats
path: root/kviewshell
diff options
context:
space:
mode:
Diffstat (limited to 'kviewshell')
-rw-r--r--kviewshell/CMakeLists.txt2
-rw-r--r--kviewshell/Makefile.am4
-rw-r--r--kviewshell/documentWidget.h2
-rw-r--r--kviewshell/kmultipage.cpp2
-rw-r--r--kviewshell/kprintDialogPage_pageoptions.h2
-rw-r--r--kviewshell/plugins/djvu/Makefile.am2
-rw-r--r--kviewshell/plugins/djvu/kprintDialogPage_DJVUconversionoptions.h2
-rw-r--r--kviewshell/plugins/djvu/kprintDialogPage_DJVUpageoptions.h2
8 files changed, 9 insertions, 9 deletions
diff --git a/kviewshell/CMakeLists.txt b/kviewshell/CMakeLists.txt
index dc28b4f8..8a9de930 100644
--- a/kviewshell/CMakeLists.txt
+++ b/kviewshell/CMakeLists.txt
@@ -78,7 +78,7 @@ tde_add_library( kmultipage SHARED AUTOMOC
selection.cpp documentRenderer.cpp history.cpp kvsprefs.kcfgc
tableOfContents.cpp kprintDialogPage_pageoptions.cpp
VERSION 0.0.0
- LINK kparts-shared kdeprint-shared
+ LINK kparts-shared tdeprint-shared
DESTINATION ${LIB_INSTALL_DIR}
)
diff --git a/kviewshell/Makefile.am b/kviewshell/Makefile.am
index 3cf71a7b..8b8bcebd 100644
--- a/kviewshell/Makefile.am
+++ b/kviewshell/Makefile.am
@@ -30,7 +30,7 @@ libkmultipage_la_SOURCES = kmultipage.cpp pageView.cpp marklist.cpp kmultipageIn
kde_kcfg_DATA = kviewshell.kcfg
libkmultipage_la_LDFLAGS = $(all_libraries)
-libkmultipage_la_LIBADD = $(LIB_KFILE) -lkdeprint -lkparts
+libkmultipage_la_LIBADD = $(LIB_KFILE) -ltdeprint -lkparts
emptymultipagepart_la_SOURCES = empty_multipage.cpp emptyRenderer.cpp
emptymultipagepart_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module
@@ -39,7 +39,7 @@ emptymultipagepart_la_LIBADD = -lkparts libkmultipage.la
libkviewshell_la_SOURCES = kviewshell.cpp
kviewshell_SOURCES = main.cpp
-kviewshell_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
+kviewshell_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
kviewshell_LDADD = libkviewshell.la ./libifaces.la -lkparts
kviewshellinclude_HEADERS = anchor.h bookmark.h pageView.h documentPageCache.h documentRenderer.h documentWidget.h \
diff --git a/kviewshell/documentWidget.h b/kviewshell/documentWidget.h
index fcec6646..491cfc36 100644
--- a/kviewshell/documentWidget.h
+++ b/kviewshell/documentWidget.h
@@ -177,7 +177,7 @@ private:
static TQColor backgroundColorForCorners;
/** The following tables store grey values for roundish shadow
- corners. They were shamelessly stolen from kdelibs/kdefx/kstyle.cpp. */
+ corners. They were shamelessly stolen from kdelibs/tdefx/kstyle.cpp. */
static const int bottom_right_corner[16];
static const int bottom_left_corner[16];
static const int shadow_strip[4];
diff --git a/kviewshell/kmultipage.cpp b/kviewshell/kmultipage.cpp
index afe04fd1..7fc41986 100644
--- a/kviewshell/kmultipage.cpp
+++ b/kviewshell/kmultipage.cpp
@@ -639,7 +639,7 @@ void KMultiPage::handleLocalLink(const TQString &linkText)
TQStringList args;
args << "openURL";
args << Link_Url.toString();
- kapp->kdeinitExec("kfmclient", args);
+ kapp->tdeinitExec("kfmclient", args);
}
}
}
diff --git a/kviewshell/kprintDialogPage_pageoptions.h b/kviewshell/kprintDialogPage_pageoptions.h
index 8fea375f..8b3ff434 100644
--- a/kviewshell/kprintDialogPage_pageoptions.h
+++ b/kviewshell/kprintDialogPage_pageoptions.h
@@ -11,7 +11,7 @@
#ifndef KPRINTDIALOGPAGE_PAGEOPTIONS_H
#define KPRINTDIALOGPAGE_PAGEOPTIONS_H
-#include <kdeprint/kprintdialogpage.h>
+#include <tdeprint/kprintdialogpage.h>
class TQCheckBox;
class TQVBoxLayout;
diff --git a/kviewshell/plugins/djvu/Makefile.am b/kviewshell/plugins/djvu/Makefile.am
index c0124821..1dba2502 100644
--- a/kviewshell/plugins/djvu/Makefile.am
+++ b/kviewshell/plugins/djvu/Makefile.am
@@ -18,7 +18,7 @@ shellrcdir = $(kde_datadir)/kviewshell/plugins/djvu
kde_module_LTLIBRARIES = djvuviewpart.la
djvuviewpart_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module
-djvuviewpart_la_LIBADD = -lkdeprint -lkparts $(top_builddir)/kviewshell/libkmultipage.la libdjvu/libdjvu.la
+djvuviewpart_la_LIBADD = -ltdeprint -lkparts $(top_builddir)/kviewshell/libkmultipage.la libdjvu/libdjvu.la
djvuviewpart_la_SOURCES = djvumultipage.cpp djvurenderer.cpp kprintDialogPage_DJVUpageoptions.cpp \
kprintDialogPage_DJVUconversionoptions.cpp kprintDialogPage_DJVUconversionoptions_basewidget.ui \
pageRangeWidget_base.ui pageRangeWidget.cpp \
diff --git a/kviewshell/plugins/djvu/kprintDialogPage_DJVUconversionoptions.h b/kviewshell/plugins/djvu/kprintDialogPage_DJVUconversionoptions.h
index c1ec4b3c..0c15d1ea 100644
--- a/kviewshell/plugins/djvu/kprintDialogPage_DJVUconversionoptions.h
+++ b/kviewshell/plugins/djvu/kprintDialogPage_DJVUconversionoptions.h
@@ -21,7 +21,7 @@
#ifndef KPRINTDIALOGPAGE_DJVUCONVERSIONOPTIONS_H
#define KPRINTDIALOGPAGE_DJVUCONVERSIONOPTIONS_H
-#include <kdeprint/kprintdialogpage.h>
+#include <tdeprint/kprintdialogpage.h>
class kprintDialogPage_DJVUconversionoptions_basewidget;
diff --git a/kviewshell/plugins/djvu/kprintDialogPage_DJVUpageoptions.h b/kviewshell/plugins/djvu/kprintDialogPage_DJVUpageoptions.h
index 5bb5833e..c23b7efb 100644
--- a/kviewshell/plugins/djvu/kprintDialogPage_DJVUpageoptions.h
+++ b/kviewshell/plugins/djvu/kprintDialogPage_DJVUpageoptions.h
@@ -11,7 +11,7 @@
#define KPRINTDIALOGPAGE_DJVUPAGEOPTIONS_H
-#include <kdeprint/kprintdialogpage.h>
+#include <tdeprint/kprintdialogpage.h>
class TQVBoxLayout;