summaryrefslogtreecommitdiffstats
path: root/kab
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-06-03 21:47:09 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-06-03 21:47:09 -0500
commit0f1209c4bbd383acb68a22128b6b323f78c7fcb3 (patch)
tree1fe793a9da5b636da0f2e7c185c232a51990aa16 /kab
parentbe91eb61cf327d204eb087b1b0e62209362f670f (diff)
downloadtdelibs-0f1209c4bbd383acb68a22128b6b323f78c7fcb3.tar.gz
tdelibs-0f1209c4bbd383acb68a22128b6b323f78c7fcb3.zip
Branding cleanup: KDE -> TDE
Diffstat (limited to 'kab')
-rw-r--r--kab/README4
-rw-r--r--kab/README.FORMAT2
-rw-r--r--kab/README.KABAPI2
-rw-r--r--kab/TODO4
-rw-r--r--kab/addressbook.cc8
-rw-r--r--kab/addressbook.h8
-rw-r--r--kab/kabapi.cc2
-rw-r--r--kab/kabapi.h2
-rw-r--r--kab/qconfigDB.cc2
-rw-r--r--kab/qconfigDB.h2
-rw-r--r--kab/template.kab2
11 files changed, 19 insertions, 19 deletions
diff --git a/kab/README b/kab/README
index 2db8822a0..8ddc6ecec 100644
--- a/kab/README
+++ b/kab/README
@@ -6,11 +6,11 @@ Cornelius Schumacher, February 2002.
-The KDE addressbook
+The TDE addressbook
===================
This directory contains the sources for the kab API provided by "libkab.so".
-kab is the KDE addressbook, users usually know it by one of the applications
+kab is the TDE addressbook, users usually know it by one of the applications
using the kab API, kab itselfes. But kab intends to do more, it tries to be
a central database to store personal information for as much KDE
applications as possible.
diff --git a/kab/README.FORMAT b/kab/README.FORMAT
index 7cce2f402..f3cb0504a 100644
--- a/kab/README.FORMAT
+++ b/kab/README.FORMAT
@@ -1,4 +1,4 @@
-The KDE addressbook
+The TDE addressbook
===================
The format that kab uses is plain ASCII, written by an QConfigDB object.
diff --git a/kab/README.KABAPI b/kab/README.KABAPI
index 45f4be6d9..e8a74d690 100644
--- a/kab/README.KABAPI
+++ b/kab/README.KABAPI
@@ -1,4 +1,4 @@
-The KDE addressbook
+The TDE addressbook
===================
The kab API is a binary interface for application developers that want to
diff --git a/kab/TODO b/kab/TODO
index a40448244..37913ceb7 100644
--- a/kab/TODO
+++ b/kab/TODO
@@ -1,4 +1,4 @@
-The KDE addressbook
+The TDE addressbook
================================================================================
If you want kab to be extended, please send a mail to me. Also
contact me if you want to comment some of the features mentioned
@@ -6,7 +6,7 @@ below. Send the mail to mirko@kde.org
Thanks.
PS: I am still looking for volunteers who try writing the import filters.
Most often I do not have the different other addressbook programs myselfes.
-PS1: This TODO list deals with tasks to add to the KDE addressbook
+PS1: This TODO list deals with tasks to add to the TDE addressbook
library. If you want the application to be extended, read tdeutils/kab/TODO.
--------------------------------------------------------------------------------
° [done] change mail addresses to an unlimited list with selection before
diff --git a/kab/addressbook.cc b/kab/addressbook.cc
index ec5f97244..0408a4db7 100644
--- a/kab/addressbook.cc
+++ b/kab/addressbook.cc
@@ -1,8 +1,8 @@
/* -*- C++ -*-
This file implements the basic personal information management class
- used in the KDE addressbook.
+ used in the TDE addressbook.
- the KDE addressbook
+ the TDE addressbook
$ Author: Mirko Boehm $
$ Copyright: (C) 1996-2001, Mirko Boehm $
@@ -439,7 +439,7 @@ AddressBook::AddressBook(TQWidget* parent, const char* name, bool loadit)
"could not be created. kab will probably not "
"work correctly without it.\n"
"Make sure you have not removed write permission "
- "from your local KDE directory (usually ~/.kde).").arg(filename));
+ "from your local TDE directory (usually ~/.trinity).").arg(filename));
state=PermDenied;
}
}
@@ -463,7 +463,7 @@ AddressBook::AddressBook(TQWidget* parent, const char* name, bool loadit)
"could not be created. kab will probably not "
"work correctly without it.\n"
"Make sure you have not removed write permission "
- "from your local KDE directory (usually ~/.kde).").arg(filename));
+ "from your local TDE directory (usually ~/.trinity).").arg(filename));
state=PermDenied;
} else {
KMessageBox::information
diff --git a/kab/addressbook.h b/kab/addressbook.h
index f87c25124..e4ac73823 100644
--- a/kab/addressbook.h
+++ b/kab/addressbook.h
@@ -1,8 +1,8 @@
/* -*- C++ -*-
This file declares the basic personal information management class
- used in the KDE addressbook.
+ used in the TDE addressbook.
- the KDE addressbook
+ the TDE addressbook
$ Author: Mirko Boehm $
$ Copyright: (C) 1996-2001, Mirko Boehm $
@@ -102,7 +102,7 @@ class CategoriesMap : public TQMap<int, TQString>
#define KAB_STATE "final"
// -----------------------------------------------------------------------------
-/** The class AddressBook implements the base class for the KDE addressbook.
+/** The class AddressBook implements the base class for the TDE addressbook.
* \par Overview
* It
* is used by the KabAPI to make the interface to kab files available to
@@ -119,7 +119,7 @@ class CategoriesMap : public TQMap<int, TQString>
* File changes are watched by the program, so every instance will automatically
* update its database on a change of the opened file.
*
- * \par The KDE addressbook database system
+ * \par The TDE addressbook database system
* kab manages entries in address databases based on a key system where the
* program assigns keys to added entries. These keys are not reused in one file,
* so API users can rely on a key to be unique and identifying until the entry
diff --git a/kab/kabapi.cc b/kab/kabapi.cc
index a6b6da682..622fc708d 100644
--- a/kab/kabapi.cc
+++ b/kab/kabapi.cc
@@ -3,7 +3,7 @@
for using kab's addressbook files within other programs.
Parse it with kdoc to get the API documentation.
- the KDE addressbook
+ the TDE addressbook
$ Author: Mirko Boehm $
$ Copyright: (C) 1996-2001, Mirko Boehm $
diff --git a/kab/kabapi.h b/kab/kabapi.h
index 9289d3f98..cc73f6744 100644
--- a/kab/kabapi.h
+++ b/kab/kabapi.h
@@ -2,7 +2,7 @@
Dialog widget using the addressbook,
provided for inclusion in other programs.
- the KDE addressbook
+ the TDE addressbook
$ Author: Mirko Boehm $
$ Copyright: (C) 1996-2001, Mirko Boehm $
diff --git a/kab/qconfigDB.cc b/kab/qconfigDB.cc
index a5d13b815..283dfddef 100644
--- a/kab/qconfigDB.cc
+++ b/kab/qconfigDB.cc
@@ -1,6 +1,6 @@
/* the Configuration Database library, Version II
- the KDE addressbook
+ the TDE addressbook
$ Author: Mirko Boehm $
$ Copyright: (C) 1996-2001, Mirko Boehm $
diff --git a/kab/qconfigDB.h b/kab/qconfigDB.h
index 1da422920..12fdac3f5 100644
--- a/kab/qconfigDB.h
+++ b/kab/qconfigDB.h
@@ -4,7 +4,7 @@
/* the Configuration Database library, Version II
- the KDE addressbook
+ the TDE addressbook
$ Author: Mirko Boehm $
$ Copyright: (C) 1996-2001, Mirko Boehm $
diff --git a/kab/template.kab b/kab/template.kab
index d4ad1c1fa..e739c24e9 100644
--- a/kab/template.kab
+++ b/kab/template.kab
@@ -1,4 +1,4 @@
-# Template file for the KDE addressbook, version 2.
+# Template file for the TDE addressbook, version 2.
# All new database files kab creates are copies of this file.
[config]
user_headline="(User fields)"