summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-05-26 19:21:59 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-05-26 19:21:59 -0500
commita55826611997c29aac2e26d81ec5de93fdfefd1f (patch)
treef7ca4b1af444cfd58c08be038a354dd3a1f0fa53
parent7f492f607b9724e67712c51db08d1f64ec3dcb9b (diff)
downloadkpilot-a55826611997c29aac2e26d81ec5de93fdfefd1f.tar.gz
kpilot-a55826611997c29aac2e26d81ec5de93fdfefd1f.zip
Branding cleanup: KDE -> TDE
-rw-r--r--kpilot/kpilotConfigWizard.cc4
-rw-r--r--kpilot/listCat.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/kpilot/kpilotConfigWizard.cc b/kpilot/kpilotConfigWizard.cc
index 9df81b4..761098b 100644
--- a/kpilot/kpilotConfigWizard.cc
+++ b/kpilot/kpilotConfigWizard.cc
@@ -124,7 +124,7 @@ void ConfigWizard::accept()
TQStringList conduits = KPilotSettings::installedConduits();
int version(0);
#define APPEND_CONDUIT(a) if (!conduits.contains(a)) conduits.append(a)
- TQString applicationName(i18n("general KDE-PIM"));
+ TQString applicationName(i18n("general TDE-PIM"));
APPEND_CONDUIT("internal_fileinstall");
APPEND_CONDUIT("todo-conduit");
APPEND_CONDUIT("vcal-conduit");
@@ -163,7 +163,7 @@ void ConfigWizard::accept()
break;
// case eAppKontact:
case eAppKDE:
- applicationName=i18n("KDE's PIM suite", "Kontact");
+ applicationName=i18n("TDE's PIM suite", "Kontact");
default:
APPEND_CONDUIT("knotes-conduit");
APPEND_CONDUIT("abbrowser_conduit");
diff --git a/kpilot/listCat.h b/kpilot/listCat.h
index ca6f43c..32c808a 100644
--- a/kpilot/listCat.h
+++ b/kpilot/listCat.h
@@ -51,8 +51,8 @@ class TQStringList;
* ListCategorizer *lc = new ListCategorizer(this,colors);
* lc->setColumnText(0,i18n("Color"));
* lc->setColumnText(1,i18n("HTML"));
- * TQListViewItem *stdKDE = lc->addCategory(i18n("Standard KDE"));
- * (void) new TQListViewItem(stdKDE,i18n("red"),"#FF0000");
+ * TQListViewItem *stdTDE = lc->addCategory(i18n("Standard TDE"));
+ * (void) new TQListViewItem(stdTDE,i18n("red"),"#FF0000");
* @endcode
* to set sensible column headers for a list of colors
* and their HTML equivalents (although why you would want
@@ -150,7 +150,7 @@ public:
* of the given item @p p. If you remembered a pointer to a
* category, you can use
* @code
- * TQStringList l = lc->listSiblings(stdKDE->firstChild(),2);
+ * TQStringList l = lc->listSiblings(stdTDE->firstChild(),2);
* @endcode
* to get the list of strings in hidden column 2 under
* the category you remembered.