summaryrefslogtreecommitdiffstats
path: root/kode
diff options
context:
space:
mode:
Diffstat (limited to 'kode')
-rw-r--r--kode/CMakeLists.txt2
-rw-r--r--kode/Makefile.am4
-rw-r--r--kode/automakefile.h2
-rw-r--r--kode/class.cpp2
-rw-r--r--kode/class.h4
-rw-r--r--kode/code.cpp2
-rw-r--r--kode/code.h4
-rw-r--r--kode/enum.h2
-rw-r--r--kode/file.cpp2
-rw-r--r--kode/file.h4
-rw-r--r--kode/function.cpp2
-rw-r--r--kode/function.h4
-rw-r--r--kode/kodemain.cpp2
-rw-r--r--kode/kwsdl/Makefile.am4
-rw-r--r--kode/kwsdl/creator.cpp2
-rw-r--r--kode/kwsdl/kung/Makefile.am2
-rw-r--r--kode/kwsdl/schema/Makefile.am4
-rw-r--r--kode/kwsdl/tests/google/Makefile.am4
-rw-r--r--kode/kwsdl/wscl/Makefile.am2
-rw-r--r--kode/kxml_compiler/Makefile.am4
-rw-r--r--kode/license.cpp2
-rw-r--r--kode/license.h4
-rw-r--r--kode/membervariable.cpp2
-rw-r--r--kode/membervariable.h4
-rw-r--r--kode/printer.cpp2
-rw-r--r--kode/printer.h4
-rw-r--r--kode/statemachine.h2
-rw-r--r--kode/style.cpp2
-rw-r--r--kode/style.h4
-rw-r--r--kode/typedef.h2
-rw-r--r--kode/variable.cpp2
-rw-r--r--kode/variable.h4
32 files changed, 46 insertions, 46 deletions
diff --git a/kode/CMakeLists.txt b/kode/CMakeLists.txt
index 616f2f94..179a539e 100644
--- a/kode/CMakeLists.txt
+++ b/kode/CMakeLists.txt
@@ -39,6 +39,6 @@ tde_add_library( kode SHARED
function.cpp variable.cpp membervariable.cpp typedef.cpp statemachine.cpp
automakefile.cpp
VERSION 1.0.0
- LINK kdecore-shared
+ LINK tdecore-shared
DESTINATION ${LIB_INSTALL_DIR}
)
diff --git a/kode/Makefile.am b/kode/Makefile.am
index af8e6157..c33d7833 100644
--- a/kode/Makefile.am
+++ b/kode/Makefile.am
@@ -10,11 +10,11 @@ libkode_la_SOURCES = code.cpp enum.cpp style.cpp printer.cpp license.cpp file.cp
typedef.cpp statemachine.cpp automakefile.cpp
libkode_la_LDFLAGS = $(KDE_RPATH) $(all_libraries) \
-version-info 1:0:0 -no-undefined
-libkode_la_LIBADD = -lkdecore
+libkode_la_LIBADD = -ltdecore
bin_PROGRAMS = kode
-kode_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
+kode_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
kode_LDADD = libkode.la -lkabc
kode_SOURCES = kodemain.cpp
diff --git a/kode/automakefile.h b/kode/automakefile.h
index 5f22a757..418851ad 100644
--- a/kode/automakefile.h
+++ b/kode/automakefile.h
@@ -26,7 +26,7 @@
#include <tqmap.h>
#include <tqstringlist.h>
-#include <kdepimmacros.h>
+#include <tdepimmacros.h>
namespace KODE {
diff --git a/kode/class.cpp b/kode/class.cpp
index dc443c20..5df86582 100644
--- a/kode/class.cpp
+++ b/kode/class.cpp
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
diff --git a/kode/class.h b/kode/class.h
index ac7570ef..f3f44114 100644
--- a/kode/class.h
+++ b/kode/class.h
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
@@ -26,7 +26,7 @@
#include "membervariable.h"
#include "typedef.h"
-#include <kdepimmacros.h>
+#include <tdepimmacros.h>
#include <tqvaluelist.h>
#include <tqstring.h>
#include <tqstringlist.h>
diff --git a/kode/code.cpp b/kode/code.cpp
index 0b28e546..ce4e9708 100644
--- a/kode/code.cpp
+++ b/kode/code.cpp
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
diff --git a/kode/code.h b/kode/code.h
index 9f056df2..97a1b8d3 100644
--- a/kode/code.h
+++ b/kode/code.h
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
@@ -26,7 +26,7 @@
#include <tqvaluelist.h>
#include <tqstring.h>
#include <tqstringlist.h>
-#include <kdepimmacros.h>
+#include <tdepimmacros.h>
namespace KODE {
class KDE_EXPORT Code
diff --git a/kode/enum.h b/kode/enum.h
index cc75b2c0..56681724 100644
--- a/kode/enum.h
+++ b/kode/enum.h
@@ -22,7 +22,7 @@
#define KODE_ENUM_H
#include <tqstringlist.h>
-#include <kdepimmacros.h>
+#include <tdepimmacros.h>
namespace KODE {
diff --git a/kode/file.cpp b/kode/file.cpp
index ce8d2a3e..b6e7619f 100644
--- a/kode/file.cpp
+++ b/kode/file.cpp
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
diff --git a/kode/file.h b/kode/file.h
index 0520d787..f4fe555e 100644
--- a/kode/file.h
+++ b/kode/file.h
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
@@ -28,7 +28,7 @@
#include <tqstring.h>
#include <tqstringlist.h>
-#include <kdepimmacros.h>
+#include <tdepimmacros.h>
namespace KODE {
diff --git a/kode/function.cpp b/kode/function.cpp
index 2cea9736..37629c55 100644
--- a/kode/function.cpp
+++ b/kode/function.cpp
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
diff --git a/kode/function.h b/kode/function.h
index ad1fea45..305838eb 100644
--- a/kode/function.h
+++ b/kode/function.h
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
@@ -26,7 +26,7 @@
#include <tqvaluelist.h>
#include <tqstring.h>
#include <tqstringlist.h>
-#include <kdepimmacros.h>
+#include <tdepimmacros.h>
namespace KODE {
diff --git a/kode/kodemain.cpp b/kode/kodemain.cpp
index 63746eff..6e9b6222 100644
--- a/kode/kodemain.cpp
+++ b/kode/kodemain.cpp
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
diff --git a/kode/kwsdl/Makefile.am b/kode/kwsdl/Makefile.am
index 62bea455..1b980da7 100644
--- a/kode/kwsdl/Makefile.am
+++ b/kode/kwsdl/Makefile.am
@@ -7,11 +7,11 @@ lib_LTLIBRARIES = libwsdl.la
libwsdl_la_SOURCES = binding.cpp message.cpp parser.cpp port.cpp service.cpp \
typemapper.cpp wsdl.cpp
libwsdl_la_LDFLAGS = $(all_libraries) -version-info 1:0:0 -no-undefined
-libwsdl_la_LIBADD = -lkdecore schema/libschema.la
+libwsdl_la_LIBADD = -ltdecore schema/libschema.la
bin_PROGRAMS = kwsdl_compiler
-kwsdl_compiler_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
+kwsdl_compiler_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
kwsdl_compiler_LDADD = ../libkode.la libwsdl.la
kwsdl_compiler_SOURCES = compiler.cpp converter.cpp creator.cpp main.cpp \
namemapper.cpp
diff --git a/kode/kwsdl/creator.cpp b/kode/kwsdl/creator.cpp
index 4c108693..0f16a5ee 100644
--- a/kode/kwsdl/creator.cpp
+++ b/kode/kwsdl/creator.cpp
@@ -60,7 +60,7 @@ void Creator::create( const KODE::Class::List &list )
KODE::AutoMakefile::Target libTarget( "bin_PROGRAMS", "kwsdl" );
libTarget.setSources( "main.cc " + cppFiles.join( " " ) );
libTarget.setLdFlags( "$(all_libraries) $(KDE_RPATH)" );
- libTarget.setLdAdd( "-lkdecore -lkio" );
+ libTarget.setLdAdd( "-ltdecore -lkio" );
KODE::AutoMakefile makefile;
makefile.addTarget( libTarget );
diff --git a/kode/kwsdl/kung/Makefile.am b/kode/kwsdl/kung/Makefile.am
index 4e044bc0..81e8dd75 100644
--- a/kode/kwsdl/kung/Makefile.am
+++ b/kode/kwsdl/kung/Makefile.am
@@ -1,7 +1,7 @@
INCLUDES = -I$(top_srcdir) -I.. -I$(top_srcdir)/kode -I$(top_srcdir)/kode/kwsdl -I$(top_srcdir)/libtdepim $(all_includes)
bin_PROGRAMS = kung
-kung_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
+kung_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
kung_SOURCES = binaryinputfield.cpp boolinputfield.cpp complexbaseinputfield.cpp dateinputfield.cpp dispatcher.cpp \
doubleinputfield.cpp enuminputfield.cpp generalconversationmanager.cpp \
inputdialog.cpp inputfield.cpp inputfieldfactory.cpp \
diff --git a/kode/kwsdl/schema/Makefile.am b/kode/kwsdl/schema/Makefile.am
index b0303307..481183ab 100644
--- a/kode/kwsdl/schema/Makefile.am
+++ b/kode/kwsdl/schema/Makefile.am
@@ -5,10 +5,10 @@ lib_LTLIBRARIES = libschema.la
libschema_la_SOURCES = attribute.cpp complextype.cpp element.cpp fileprovider.cpp \
parser.cpp qualifiedname.cpp simpletype.cpp types.cpp typestable.cpp
libschema_la_LDFLAGS = $(all_libraries) -version-info 1:0:0 -no-undefined
-libschema_la_LIBADD = -lqt-mt -lkdecore -lkio
+libschema_la_LIBADD = -lqt-mt -ltdecore -lkio
#bin_PROGRAMS = schematest
-#schematest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
+#schematest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
#schematest_SOURCES = main.cpp
#schematest_LDADD = libschema.la
diff --git a/kode/kwsdl/tests/google/Makefile.am b/kode/kwsdl/tests/google/Makefile.am
index a7ef04a0..5ad1784c 100644
--- a/kode/kwsdl/tests/google/Makefile.am
+++ b/kode/kwsdl/tests/google/Makefile.am
@@ -4,6 +4,6 @@ METASOURCES = AUTO
bin_PROGRAMS = googletest
googletest_SOURCES = main.cc googlesearch.cc transport.cpp resultelementarray.cpp directorycategoryarray.cpp googlesearchresult.cpp directorycategory.cpp resultelement.cpp serializer.cpp googlesearchservice.cpp
-googletest_LDADD = -lkdecore -lkio
-googletest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
+googletest_LDADD = -ltdecore -lkio
+googletest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
diff --git a/kode/kwsdl/wscl/Makefile.am b/kode/kwsdl/wscl/Makefile.am
index 7867decb..f550c95c 100644
--- a/kode/kwsdl/wscl/Makefile.am
+++ b/kode/kwsdl/wscl/Makefile.am
@@ -7,7 +7,7 @@ libwscl_la_LDFLAGS = $(all_libraries) -version-info 1:0:0 -no-undefined
libwscl_la_LIBADD = -lqt-mt
#bin_PROGRAMS = wscltest
-#wscltest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
+#wscltest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
#wscltest_SOURCES = main.cpp
#wscltest_LDADD = libwscl.la
diff --git a/kode/kxml_compiler/Makefile.am b/kode/kxml_compiler/Makefile.am
index 76829a27..57d3fdce 100644
--- a/kode/kxml_compiler/Makefile.am
+++ b/kode/kxml_compiler/Makefile.am
@@ -2,8 +2,8 @@ INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/libtdepim $(all_includes)
bin_PROGRAMS = kxml_compiler
-kxml_compiler_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
-kxml_compiler_LDADD = ../libkode.la -lkdecore
+kxml_compiler_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
+kxml_compiler_LDADD = ../libkode.la -ltdecore
kxml_compiler_SOURCES = parser.cpp creator.cpp kxml_compiler.cpp
METASOURCES = AUTO
diff --git a/kode/license.cpp b/kode/license.cpp
index 1cec5cab..744b51c3 100644
--- a/kode/license.cpp
+++ b/kode/license.cpp
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
diff --git a/kode/license.h b/kode/license.h
index 3cdeff1f..6474babc 100644
--- a/kode/license.h
+++ b/kode/license.h
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
@@ -22,7 +22,7 @@
#define KODE_LICENSE_H
#include <tqstring.h>
-#include <kdepimmacros.h>
+#include <tdepimmacros.h>
namespace KODE {
diff --git a/kode/membervariable.cpp b/kode/membervariable.cpp
index ac8f2c25..b915eeb3 100644
--- a/kode/membervariable.cpp
+++ b/kode/membervariable.cpp
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
diff --git a/kode/membervariable.h b/kode/membervariable.h
index 957df34a..fe5e889d 100644
--- a/kode/membervariable.h
+++ b/kode/membervariable.h
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
@@ -25,7 +25,7 @@
#include <tqvaluelist.h>
#include <tqstring.h>
-#include <kdepimmacros.h>
+#include <tdepimmacros.h>
namespace KODE {
diff --git a/kode/printer.cpp b/kode/printer.cpp
index 6f36d30e..f36b1c38 100644
--- a/kode/printer.cpp
+++ b/kode/printer.cpp
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
diff --git a/kode/printer.h b/kode/printer.h
index 65cbddaa..1d3f103e 100644
--- a/kode/printer.h
+++ b/kode/printer.h
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
@@ -26,7 +26,7 @@
#include "style.h"
#include "automakefile.h"
-#include <kdepimmacros.h>
+#include <tdepimmacros.h>
#include <tqvaluelist.h>
#include <tqstring.h>
#include <tqstringlist.h>
diff --git a/kode/statemachine.h b/kode/statemachine.h
index e6593c94..5c977293 100644
--- a/kode/statemachine.h
+++ b/kode/statemachine.h
@@ -25,7 +25,7 @@
#include <tqstring.h>
#include <tqmap.h>
-#include <kdepimmacros.h>
+#include <tdepimmacros.h>
namespace KODE {
diff --git a/kode/style.cpp b/kode/style.cpp
index 8f4d255b..e92c3691 100644
--- a/kode/style.cpp
+++ b/kode/style.cpp
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
diff --git a/kode/style.h b/kode/style.h
index f8a26022..26921f71 100644
--- a/kode/style.h
+++ b/kode/style.h
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
@@ -27,7 +27,7 @@
#include <tqstring.h>
#include <tqstringlist.h>
-#include <kdepimmacros.h>
+#include <tdepimmacros.h>
namespace KODE {
diff --git a/kode/typedef.h b/kode/typedef.h
index 860d0081..9cc69635 100644
--- a/kode/typedef.h
+++ b/kode/typedef.h
@@ -22,7 +22,7 @@
#define KODE_TYPEDEF_H
#include <tqvaluelist.h>
-#include <kdepimmacros.h>
+#include <tdepimmacros.h>
namespace KODE {
diff --git a/kode/variable.cpp b/kode/variable.cpp
index 9fa985ab..c767ad6d 100644
--- a/kode/variable.cpp
+++ b/kode/variable.cpp
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
diff --git a/kode/variable.h b/kode/variable.h
index 4cc66aa5..1eda384f 100644
--- a/kode/variable.h
+++ b/kode/variable.h
@@ -1,5 +1,5 @@
/*
- This file is part of kdepim.
+ This file is part of tdepim.
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
@@ -24,7 +24,7 @@
#include <tqvaluelist.h>
#include <tqstring.h>
-#include <kdepimmacros.h>
+#include <tdepimmacros.h>
namespace KODE {