summaryrefslogtreecommitdiffstats
path: root/umbrello
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:31:55 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:31:55 -0600
commit78a14fe575048e318a9c4403cb42060b17946883 (patch)
treec3f3c4d9a229752bb371ccbd45ec3f488276a950 /umbrello
parentbd3922c07c6753c5cb6ceeb6df8c6edae1183d2d (diff)
downloadtdesdk-78a14fe575048e318a9c4403cb42060b17946883.tar.gz
tdesdk-78a14fe575048e318a9c4403cb42060b17946883.zip
Additional kde to tde renaming
Diffstat (limited to 'umbrello')
-rw-r--r--umbrello/configure.in.in4
-rw-r--r--umbrello/umbrello/dialogs/diagramprintpage.h2
-rw-r--r--umbrello/umbrello/docgenerators/Makefile.am2
-rw-r--r--umbrello/umbrello/uniqueid.cpp2
4 files changed, 5 insertions, 5 deletions
diff --git a/umbrello/configure.in.in b/umbrello/configure.in.in
index 81e4fd59..820c1862 100644
--- a/umbrello/configure.in.in
+++ b/umbrello/configure.in.in
@@ -37,7 +37,7 @@ dnl ])
HAVE_XSLT=yes
KDE_FIND_PATH(xml2-config, XML_CONFIG, [${prefix}/bin ${exec_prefix}/bin], [
- AC_MSG_WARN([Could not find libxml2 anywhere, check ftp://xmlsoft.org/ for libxml >= 2.4.8. (we also keep a version of it in kdesupport for CVS users' convience)])
+ AC_MSG_WARN([Could not find libxml2 anywhere, check ftp://xmlsoft.org/ for libxml >= 2.4.8. (we also keep a version of it in tdesupport for CVS users' convience)])
HELP_SUBDIR=
DO_NOT_COMPILE="$DO_NOT_COMPILE umbrello"
])
@@ -70,7 +70,7 @@ fi
if test "$HAVE_XSLT" = yes; then
KDE_FIND_PATH(xslt-config, XSLT_CONFIG, [${prefix}/bin ${exec_prefix}/bin], [
- AC_MSG_WARN([Could not find libxslt anywhere, check ftp://xmlsoft.org/ for libxslt >= 1.0.7. (we also keep a version of it in kdesupport for CVS users' convience)])
+ AC_MSG_WARN([Could not find libxslt anywhere, check ftp://xmlsoft.org/ for libxslt >= 1.0.7. (we also keep a version of it in tdesupport for CVS users' convience)])
HAVE_XSLT=no
DO_NOT_COMPILE="$DO_NOT_COMPILE umbrello"
])
diff --git a/umbrello/umbrello/dialogs/diagramprintpage.h b/umbrello/umbrello/dialogs/diagramprintpage.h
index b7980ca0..8f18bbad 100644
--- a/umbrello/umbrello/dialogs/diagramprintpage.h
+++ b/umbrello/umbrello/dialogs/diagramprintpage.h
@@ -18,7 +18,7 @@ class TQComboBox;
class TQButtonGroup;
class TQGroupBox;
-#include <kdeprint/kprintdialogpage.h>
+#include <tdeprint/kprintdialogpage.h>
#include "../umldoc.h"
#include "../umlview.h"
diff --git a/umbrello/umbrello/docgenerators/Makefile.am b/umbrello/umbrello/docgenerators/Makefile.am
index a98f1d7e..0309fdc6 100644
--- a/umbrello/umbrello/docgenerators/Makefile.am
+++ b/umbrello/umbrello/docgenerators/Makefile.am
@@ -2,7 +2,7 @@ INCLUDES = -I$(srcdir)/.. -I$(top_srcdir)/umbrello/docgenerators -I../../../umbr
METASOURCES = AUTO
bin_PROGRAMS = umbodoc
-AM_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
+AM_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
umbodoc_COMPILE_FIRST = version.h
umbodoc_SOURCES = main.cpp
umbodoc_LDADD = $(LIB_KDECORE) $(LIBXSLT_LIBS) $(LIBXML_LIBS)
diff --git a/umbrello/umbrello/uniqueid.cpp b/umbrello/umbrello/uniqueid.cpp
index ce4dc117..9c271cdb 100644
--- a/umbrello/umbrello/uniqueid.cpp
+++ b/umbrello/umbrello/uniqueid.cpp
@@ -26,7 +26,7 @@ Uml::IDType gen() {
static char buf[20];
int length = 12;
int i = 0;
- // Source: KDE4 kdelibs/kdecore/krandom.cpp KRandom::randomString()
+ // Source: KDE4 kdelibs/tdecore/krandom.cpp KRandom::randomString()
while (length--) {
int r = kapp->random() % 62;
r += 48;