summaryrefslogtreecommitdiffstats
path: root/kdeprint/ext
diff options
context:
space:
mode:
Diffstat (limited to 'kdeprint/ext')
-rw-r--r--kdeprint/ext/CMakeLists.txt16
-rw-r--r--kdeprint/ext/Makefile.am14
-rw-r--r--kdeprint/ext/kextprinterimpl.cpp2
-rw-r--r--kdeprint/ext/kextprinterimpl.h2
-rw-r--r--kdeprint/ext/kmextfactory.cpp4
-rw-r--r--kdeprint/ext/kmextmanager.cpp2
-rw-r--r--kdeprint/ext/kmextmanager.h2
-rw-r--r--kdeprint/ext/kmextuimanager.cpp2
-rw-r--r--kdeprint/ext/kmextuimanager.h2
9 files changed, 23 insertions, 23 deletions
diff --git a/kdeprint/ext/CMakeLists.txt b/kdeprint/ext/CMakeLists.txt
index 8c701056b..9f4b2d629 100644
--- a/kdeprint/ext/CMakeLists.txt
+++ b/kdeprint/ext/CMakeLists.txt
@@ -17,11 +17,11 @@ include_directories(
${TQT_INCLUDE_DIRS}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_BINARY_DIR}
- ${CMAKE_BINARY_DIR}/kdecore
+ ${CMAKE_BINARY_DIR}/tdecore
${CMAKE_SOURCE_DIR}
- ${CMAKE_SOURCE_DIR}/kdecore
- ${CMAKE_SOURCE_DIR}/kdeui
- ${CMAKE_SOURCE_DIR}/kdeprint
+ ${CMAKE_SOURCE_DIR}/tdecore
+ ${CMAKE_SOURCE_DIR}/tdeui
+ ${CMAKE_SOURCE_DIR}/tdeprint
)
link_directories(
@@ -31,12 +31,12 @@ link_directories(
##### other data ################################
-install( FILES ext.print DESTINATION ${DATA_INSTALL_DIR}/kdeprint/plugins )
+install( FILES ext.print DESTINATION ${DATA_INSTALL_DIR}/tdeprint/plugins )
-##### kdeprint_ext ##############################
+##### tdeprint_ext ##############################
-set( target kdeprint_ext )
+set( target tdeprint_ext )
set( ${target}_SRCS
kmextfactory.cpp kmextmanager.cpp kextprinterimpl.cpp
@@ -45,6 +45,6 @@ set( ${target}_SRCS
tde_add_kpart( ${target} AUTOMOC
SOURCES ${${target}_SRCS}
- LINK kdeprint-shared
+ LINK tdeprint-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kdeprint/ext/Makefile.am b/kdeprint/ext/Makefile.am
index 1cb50d9fb..66e547c9d 100644
--- a/kdeprint/ext/Makefile.am
+++ b/kdeprint/ext/Makefile.am
@@ -1,15 +1,15 @@
AM_CPPFLAGS = -D_KDEPRINT_COMPILE
-INCLUDES= -I$(top_srcdir) -I$(top_srcdir)/kdeprint $(all_includes)
+INCLUDES= -I$(top_srcdir) -I$(top_srcdir)/tdeprint $(all_includes)
-kde_module_LTLIBRARIES = kdeprint_ext.la
+kde_module_LTLIBRARIES = tdeprint_ext.la
-kdeprint_ext_la_SOURCES = kmextfactory.cpp kmextmanager.cpp kextprinterimpl.cpp kmextuimanager.cpp
-kdeprint_ext_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined
-kdeprint_ext_la_LIBADD = $(LIB_KDEPRINT) $(LIB_QT) $(LIB_KDECORE)
-kdeprint_ext_la_METASOURCES = AUTO
+tdeprint_ext_la_SOURCES = kmextfactory.cpp kmextmanager.cpp kextprinterimpl.cpp kmextuimanager.cpp
+tdeprint_ext_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined
+tdeprint_ext_la_LIBADD = $(LIB_KDEPRINT) $(LIB_QT) $(LIB_KDECORE)
+tdeprint_ext_la_METASOURCES = AUTO
noinst_HEADERS = kmextmanager.h kextprinterimpl.h kmextuimanager.h
entry_DATA = ext.print
-entrydir = $(kde_datadir)/kdeprint/plugins
+entrydir = $(kde_datadir)/tdeprint/plugins
diff --git a/kdeprint/ext/kextprinterimpl.cpp b/kdeprint/ext/kextprinterimpl.cpp
index c92657497..c976f54e0 100644
--- a/kdeprint/ext/kextprinterimpl.cpp
+++ b/kdeprint/ext/kextprinterimpl.cpp
@@ -1,6 +1,6 @@
/*
* This file is part of the KDE libraries
- * Copyright (c) 2001 Michael Goffioul <kdeprint@swing.be>
+ * Copyright (c) 2001 Michael Goffioul <tdeprint@swing.be>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
diff --git a/kdeprint/ext/kextprinterimpl.h b/kdeprint/ext/kextprinterimpl.h
index 653593592..169e06bf4 100644
--- a/kdeprint/ext/kextprinterimpl.h
+++ b/kdeprint/ext/kextprinterimpl.h
@@ -1,6 +1,6 @@
/*
* This file is part of the KDE libraries
- * Copyright (c) 2001 Michael Goffioul <kdeprint@swing.be>
+ * Copyright (c) 2001 Michael Goffioul <tdeprint@swing.be>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
diff --git a/kdeprint/ext/kmextfactory.cpp b/kdeprint/ext/kmextfactory.cpp
index 3360774fa..de8c58dfe 100644
--- a/kdeprint/ext/kmextfactory.cpp
+++ b/kdeprint/ext/kmextfactory.cpp
@@ -1,6 +1,6 @@
/*
* This file is part of the KDE libraries
- * Copyright (c) 2001 Michael Goffioul <kdeprint@swing.be>
+ * Copyright (c) 2001 Michael Goffioul <tdeprint@swing.be>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -24,5 +24,5 @@
#include <kgenericfactory.h>
typedef K_TYPELIST_3( KMExtManager, KMExtUiManager, KExtPrinterImpl ) Products;
-K_EXPORT_COMPONENT_FACTORY( kdeprint_ext, KGenericFactory< Products > )
+K_EXPORT_COMPONENT_FACTORY( tdeprint_ext, KGenericFactory< Products > )
diff --git a/kdeprint/ext/kmextmanager.cpp b/kdeprint/ext/kmextmanager.cpp
index 017142a14..598dd6648 100644
--- a/kdeprint/ext/kmextmanager.cpp
+++ b/kdeprint/ext/kmextmanager.cpp
@@ -1,6 +1,6 @@
/*
* This file is part of the KDE libraries
- * Copyright (c) 2001 Michael Goffioul <kdeprint@swing.be>
+ * Copyright (c) 2001 Michael Goffioul <tdeprint@swing.be>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
diff --git a/kdeprint/ext/kmextmanager.h b/kdeprint/ext/kmextmanager.h
index 8811f952d..c7faab6cf 100644
--- a/kdeprint/ext/kmextmanager.h
+++ b/kdeprint/ext/kmextmanager.h
@@ -1,6 +1,6 @@
/*
* This file is part of the KDE libraries
- * Copyright (c) 2001 Michael Goffioul <kdeprint@swing.be>
+ * Copyright (c) 2001 Michael Goffioul <tdeprint@swing.be>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
diff --git a/kdeprint/ext/kmextuimanager.cpp b/kdeprint/ext/kmextuimanager.cpp
index ea698b8cd..2fa200848 100644
--- a/kdeprint/ext/kmextuimanager.cpp
+++ b/kdeprint/ext/kmextuimanager.cpp
@@ -1,6 +1,6 @@
/*
* This file is part of the KDE libraries
- * Copyright (c) 2001 Michael Goffioul <kdeprint@swing.be>
+ * Copyright (c) 2001 Michael Goffioul <tdeprint@swing.be>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
diff --git a/kdeprint/ext/kmextuimanager.h b/kdeprint/ext/kmextuimanager.h
index 671d8e76b..bca161c60 100644
--- a/kdeprint/ext/kmextuimanager.h
+++ b/kdeprint/ext/kmextuimanager.h
@@ -1,6 +1,6 @@
/*
* This file is part of the KDE libraries
- * Copyright (c) 2001 Michael Goffioul <kdeprint@swing.be>
+ * Copyright (c) 2001 Michael Goffioul <tdeprint@swing.be>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public