summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:41:48 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:41:48 -0600
commit67d9aaa1e16f37e4806ec140b0596eb2a57e4e25 (patch)
treed0302ffb8c4fcda0a0d27715ccb4dc3ad85ffd00
parente50a1bb5d556e240a2a9644703e3e77a9daebfaf (diff)
downloadkpilot-67d9aaa1e16f37e4806ec140b0596eb2a57e4e25.tar.gz
kpilot-67d9aaa1e16f37e4806ec140b0596eb2a57e4e25.zip
Additional renaming of kde to tde
-rw-r--r--ChangeLog8
-rw-r--r--Documentation/ConduitProgrammingTutorial/index.tex2
-rw-r--r--conduits/configure.in.in8
-rw-r--r--kpilot/dbAppInfoEditor.cc2
-rw-r--r--kpilot/dbFlagsEditor_base.ui.h2
-rw-r--r--kpilot/dbRecordEditor.cc2
-rw-r--r--kpilot/internalEditorAction.cc4
-rw-r--r--kpilot/kpilot.h2
-rw-r--r--kpilot/memoWidget.cc2
-rw-r--r--lib/options.h2
10 files changed, 17 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index 66598e7..64c5b9a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1780,7 +1780,7 @@ KPilot Developer's notes for January 17th, 2003
problems. There's a note in the QSocketNotifier docs saying not to disable
read-notifiers. I did anyway, and it never caused problems before.
Added some workaround crud.
-* I'm currently building kdelibs and base and pim on a Linux box, something
+* I'm currently building tdelibs and base and pim on a Linux box, something
I haven't done in over a year. This will allow me access to a USB stack
that can actually handle the m500, so I can do some more testing.
Primary platform remains FreeBSD, though, for all-the-other-KDE-problems-
@@ -2282,7 +2282,7 @@ a writer of technical documentation. She'll be helping me document the
various files in kpilot/lib so that they actually form an understandable
and usable API for third-party conduit-writers. Philipp Hullmann, you
should be overjoyed to hear this :) Once she's practiced on KPilot, Steph
-will be leaving us for kdelibs, where weird and wonderful things await ...
+will be leaving us for tdelibs, where weird and wonderful things await ...
2002-01-25 Adriaan de Groot
* *.ui
@@ -3302,7 +3302,7 @@ KPilot Developer's notes for may 14th 2001
Not a lot of movement on the coding front for me [ade]; I
did remember mothers' day though. Changes relevant to KPilot:
-* abbrowser has moved into kdebase, so the abbrowser conduit will
+* abbrowser has moved into tdebase, so the abbrowser conduit will
now be available to everyone, not just those that also compile
all of tdepim.
@@ -3745,7 +3745,7 @@ Done:
various conduit setups. The docs still aren't complete but they're a
darn sight better than they were.
* Modal dialogs need exec() instead of show()
-* Changes in kdelibs caused some dialogs to hang in slotCancel()
+* Changes in tdelibs caused some dialogs to hang in slotCancel()
* Changes in includes means we have to include kdebug.h ourselves
* Get rid of cerr and use kdDebug or kdWarning or kdError as appropriate.
There are still a very few cerrs left in places where we can't rely on
diff --git a/Documentation/ConduitProgrammingTutorial/index.tex b/Documentation/ConduitProgrammingTutorial/index.tex
index 679fcc0..f66b071 100644
--- a/Documentation/ConduitProgrammingTutorial/index.tex
+++ b/Documentation/ConduitProgrammingTutorial/index.tex
@@ -363,7 +363,7 @@ kpilotdaemon: somefunction: Value of i=5
In this section I will shortly describe how you can implement a configuration dialog for your conduit.
There is nothing Palm- or KPilot-specific about this. All the configuration dialog does is to read the
-configuration settings from the config file (using the \class{KConfig} class from kdelibs), and let
+configuration settings from the config file (using the \class{KConfig} class from tdelibs), and let
the user change them in the dialog. If the user exists the dialog by pressing OK, the new values are
read from the dialog controls and written back to the configuration file.
diff --git a/conduits/configure.in.in b/conduits/configure.in.in
index c6a0d14..d1525ee 100644
--- a/conduits/configure.in.in
+++ b/conduits/configure.in.in
@@ -58,10 +58,10 @@ if test "x$with_mal" = "xCHECK" ; then
if test $with_mal = FOUND ; then
with_mal=NOTFOUND
for ext in la so sl a ; do
- AC_FIND_FILE(libmal.$ext, $kde_libraries $libdir /usr/lib$kdelibsuff /usr/local/lib$kdelibsuff $libdir/libmal /usr/lib/libmal /usr/local/lib/libmal,
+ AC_FIND_FILE(libmal.$ext, $kde_libraries $libdir /usr/lib$tdelibsuff /usr/local/lib$tdelibsuff $libdir/libmal /usr/lib/libmal /usr/local/lib/libmal,
mal_libdir)
if test -r $mal_libdir/libmal.$ext ; then
- if test "x$mal_libdir" != "x/usr/lib$kdelibsuff" ; then
+ if test "x$mal_libdir" != "x/usr/lib$tdelibsuff" ; then
MAL_LIB="-L$mal_libdir "
test "$USE_RPATH" = yes && MAL_RPATH="-R $mal_libdir"
fi
@@ -84,9 +84,9 @@ NOTFOUND) AC_MSG_RESULT(searched but not found) ;;
MAL_ROOT="$with_mal"
if test "x$MAL_ROOT" != "x/usr" ; then
MAL_INCLUDE="-I${MAL_ROOT}/include"
- MAL_LIB="-L${MAL_ROOT}/lib$kdelibsuff "
+ MAL_LIB="-L${MAL_ROOT}/lib$tdelibsuff "
if test "$USE_RPATH" = "yes" ; then
- MAL_RPATH="-R ${MAL_ROOT}/lib$kdelibsuff"
+ MAL_RPATH="-R ${MAL_ROOT}/lib$tdelibsuff"
fi
fi
MAL_LIB="${MAL_LIBS}-lmal"
diff --git a/kpilot/dbAppInfoEditor.cc b/kpilot/dbAppInfoEditor.cc
index 0011ff1..bfedb45 100644
--- a/kpilot/dbAppInfoEditor.cc
+++ b/kpilot/dbAppInfoEditor.cc
@@ -65,7 +65,7 @@ DBAppInfoEditor::DBAppInfoEditor(char*appInfoData, int l, TQWidget *parent) :
}
else
{
- TQLabel*tmpW = new TQLabel( i18n("To view the Application info block data, please install a hex editor (e.g. khexedit from kdeutils)."), this );
+ TQLabel*tmpW = new TQLabel( i18n("To view the Application info block data, please install a hex editor (e.g. khexedit from tdeutils)."), this );
tmpW->setBackgroundMode( TQt::PaletteMid );
tmpW->tqsetAlignment( TQt::AlignHCenter | TQt::AlignVCenter | TQt::WordBreak);
tmpW->setFrameShape( TQFrame::Panel );
diff --git a/kpilot/dbFlagsEditor_base.ui.h b/kpilot/dbFlagsEditor_base.ui.h
index fb4fe77..d39b77f 100644
--- a/kpilot/dbFlagsEditor_base.ui.h
+++ b/kpilot/dbFlagsEditor_base.ui.h
@@ -7,7 +7,7 @@
** place of a destructor.
*****************************************************************************/
#ifndef TDE_VERSION
-#include <kdeversion.h>
+#include <tdeversion.h>
#endif
#if KDE_IS_VERSION(3,1,90)
diff --git a/kpilot/dbRecordEditor.cc b/kpilot/dbRecordEditor.cc
index ec31e26..16385a7 100644
--- a/kpilot/dbRecordEditor.cc
+++ b/kpilot/dbRecordEditor.cc
@@ -190,7 +190,7 @@ void DBRecordEditor::initWidgets()
}
else
{
- TQLabel*tmpW = new TQLabel( i18n("To view and edit the record data, please install a hex editor (e.g. kbytesedit from kdeutils)."), fWidget );
+ TQLabel*tmpW = new TQLabel( i18n("To view and edit the record data, please install a hex editor (e.g. kbytesedit from tdeutils)."), fWidget );
tmpW->setBackgroundMode( TQt::PaletteMid );
tmpW->tqsetAlignment( TQt::AlignHCenter | TQt::AlignVCenter | TQt::WordBreak);
tmpW->setFrameShape( TQFrame::Panel );
diff --git a/kpilot/internalEditorAction.cc b/kpilot/internalEditorAction.cc
index 23e2c32..a83d68f 100644
--- a/kpilot/internalEditorAction.cc
+++ b/kpilot/internalEditorAction.cc
@@ -260,7 +260,7 @@ bool InternalEditorAction::queryUseKPilotChanges(TQString dbName, recordid_t id,
}
else
{
- TQLabel*tmpW = new TQLabel( i18n("To view and edit the record data, please install a hex editor (e.g. khexedit from kdeutils)."), page );
+ TQLabel*tmpW = new TQLabel( i18n("To view and edit the record data, please install a hex editor (e.g. khexedit from tdeutils)."), page );
tmpW->setBackgroundMode( TQt::PaletteMid );
tmpW->tqsetAlignment( TQt::AlignHCenter | TQt::AlignVCenter | TQt::WordBreak);
tmpW->setFrameShape( TQFrame::Panel );
@@ -288,7 +288,7 @@ bool InternalEditorAction::queryUseKPilotChanges(TQString dbName, recordid_t id,
}
else
{
- TQLabel*tmpW = new TQLabel( i18n("To view and edit the record data, please install a hex editor (e.g. khexedit from kdeutils)."), page );
+ TQLabel*tmpW = new TQLabel( i18n("To view and edit the record data, please install a hex editor (e.g. khexedit from tdeutils)."), page );
tmpW->setBackgroundMode( TQt::PaletteMid );
tmpW->tqsetAlignment( TQt::AlignHCenter | TQt::AlignVCenter | TQt::WordBreak);
tmpW->setFrameShape( TQFrame::Panel );
diff --git a/kpilot/kpilot.h b/kpilot/kpilot.h
index da024b9..0510322 100644
--- a/kpilot/kpilot.h
+++ b/kpilot/kpilot.h
@@ -111,7 +111,7 @@ public slots:
/**
* These are slots for the standard Configure ...
* actions and not interesting. The show toolbar
- * functionality is in kdelibs starting with KDE 3.1,
+ * functionality is in tdelibs starting with KDE 3.1,
* but we need to remain backwards compatible.
*/
void optionsConfigureKeys();
diff --git a/kpilot/memoWidget.cc b/kpilot/memoWidget.cc
index c471719..53b220e 100644
--- a/kpilot/memoWidget.cc
+++ b/kpilot/memoWidget.cc
@@ -51,7 +51,7 @@
#include <kapplication.h>
#include <kmessagebox.h>
#include <kfiledialog.h>
-#include <kdeversion.h>
+#include <tdeversion.h>
#include <ktextedit.h>
#include "kpilot.h"
diff --git a/lib/options.h b/lib/options.h
index e1c6742..ae2c4be 100644
--- a/lib/options.h
+++ b/lib/options.h
@@ -41,7 +41,7 @@
#include <tqstring.h>
#include <kdebug.h>
-#include <kdeversion.h>
+#include <tdeversion.h>
#include <klocale.h>
#if !(KDE_IS_VERSION(3,4,0))