summaryrefslogtreecommitdiffstats
path: root/kded
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:51:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:51:39 -0600
commit3b1405169d66e029912f53d10c2880c46f5ed159 (patch)
tree40c38835f7709885bf4a99d6d9cc64232397c4ba /kded
parentbd19c52fd41735f3e488bbe3de6b243ac53e1527 (diff)
downloadtdelibs-3b1405169d66e029912f53d10c2880c46f5ed159.tar.gz
tdelibs-3b1405169d66e029912f53d10c2880c46f5ed159.zip
Additional renaming of kde to tde
Diffstat (limited to 'kded')
-rw-r--r--kded/HOWTO2
-rw-r--r--kded/Mainpage.dox2
-rw-r--r--kded/applications.menu2
-rw-r--r--kded/kbuildsycoca.cpp6
-rw-r--r--kded/kde-menu.cpp6
-rw-r--r--kded/kded.cpp4
-rw-r--r--kded/kdedmodule.h2
-rw-r--r--kded/khostname.cpp2
8 files changed, 13 insertions, 13 deletions
diff --git a/kded/HOWTO b/kded/HOWTO
index d1596b8cd..59d91b3c4 100644
--- a/kded/HOWTO
+++ b/kded/HOWTO
@@ -15,4 +15,4 @@ the name of the DCOP object that is implemented by the module.
The desktop file needs to define the library in which the module is
implemented. The name of the library always starts with kded_.
-The kdelibs/kded/test/ directory contains a sample implementation.
+The tdelibs/kded/test/ directory contains a sample implementation.
diff --git a/kded/Mainpage.dox b/kded/Mainpage.dox
index 50c0493d8..798f23f03 100644
--- a/kded/Mainpage.dox
+++ b/kded/Mainpage.dox
@@ -5,7 +5,7 @@ of these tasks are built in, others are started on demand.
<p>
The chances are you are looking here because you want to write a
TrinityD module. For that, see TrinityDModule in tdecore and the
-<a href="http://websvn.kde.org/trunk/Trinity/kdelibs/kded/README.kded?view=markup">TrinityD
+<a href="http://websvn.kde.org/trunk/Trinity/tdelibs/kded/README.kded?view=markup">TrinityD
README</a>.
diff --git a/kded/applications.menu b/kded/applications.menu
index dc1d46cf4..4b30a56ce 100644
--- a/kded/applications.menu
+++ b/kded/applications.menu
@@ -41,7 +41,7 @@
<Directory>kde-development.directory</Directory>
<Menu>
<Name>X-KDE-KDevelopIDE</Name>
- <Directory>kde-development-kdevelop.directory</Directory>
+ <Directory>kde-development-tdevelop.directory</Directory>
<Include>
<And>
<Category>Development</Category>
diff --git a/kded/kbuildsycoca.cpp b/kded/kbuildsycoca.cpp
index 041c9db3a..30b826c8c 100644
--- a/kded/kbuildsycoca.cpp
+++ b/kded/kbuildsycoca.cpp
@@ -717,7 +717,7 @@ public:
extern "C" KDE_EXPORT int kdemain(int argc, char **argv)
{
- KLocale::setMainCatalogue("kdelibs");
+ KLocale::setMainCatalogue("tdelibs");
KAboutData d(appName, I18N_NOOP("KBuildSycoca"), appVersion,
I18N_NOOP("Rebuilds the system configuration cache."),
KAboutData::License_GPL, "(c) 1999-2002 KDE Developers");
@@ -763,8 +763,8 @@ extern "C" KDE_EXPORT int kdemain(int argc, char **argv)
KCrash::setEmergencySaveFunction(crashHandler);
KCrash::setApplicationName(TQString(appName));
- // this program is in kdelibs so it uses kdelibs as catalog
- KLocale::setMainCatalogue("kdelibs");
+ // this program is in tdelibs so it uses tdelibs as catalog
+ KLocale::setMainCatalogue("tdelibs");
// force generating of KLocale object. if not, the database will get
// be translated
KGlobal::locale();
diff --git a/kded/kde-menu.cpp b/kded/kde-menu.cpp
index 33faf6c7c..b401953f3 100644
--- a/kded/kde-menu.cpp
+++ b/kded/kde-menu.cpp
@@ -107,7 +107,7 @@ static void findMenuEntry(KServiceGroup::Ptr parent, const TQString &name, const
int main(int argc, char **argv)
{
- KLocale::setMainCatalogue("kdelibs");
+ KLocale::setMainCatalogue("tdelibs");
const char *description = I18N_NOOP("KDE Menu query tool.\n"
"This tool can be used to find in which menu a specific application is shown.\n"
"The --highlight option can be used to visually indicate to the user where\n"
@@ -125,8 +125,8 @@ int main(int argc, char **argv)
KApplication k(false);
k.disableSessionManagement();
- // this program is in kdelibs so it uses kdelibs as catalog
- KLocale::setMainCatalogue("kdelibs");
+ // this program is in tdelibs so it uses tdelibs as catalog
+ KLocale::setMainCatalogue("tdelibs");
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
if (args->count() != 1)
diff --git a/kded/kded.cpp b/kded/kded.cpp
index 2a634ff5c..05964b0df 100644
--- a/kded/kded.cpp
+++ b/kded/kded.cpp
@@ -884,8 +884,8 @@ extern "C" KDE_EXPORT int kdemain(int argc, char *argv[])
KCmdLineArgs::addCmdLineOptions( options );
- // this program is in kdelibs so it uses kdelibs as catalog
- KLocale::setMainCatalogue("kdelibs");
+ // this program is in tdelibs so it uses tdelibs as catalog
+ KLocale::setMainCatalogue("tdelibs");
// WABA: Make sure not to enable session management.
putenv(strdup("SESSION_MANAGER="));
diff --git a/kded/kdedmodule.h b/kded/kdedmodule.h
index 041f50303..855a02824 100644
--- a/kded/kdedmodule.h
+++ b/kded/kdedmodule.h
@@ -47,7 +47,7 @@ class Kded;
* }
* \endcode
*
- * See kdelibs/kded/HOWTO for more detailed documentation.
+ * See tdelibs/kded/HOWTO for more detailed documentation.
*
* @author Waldo Bastian <bastian@kde.org>
*/
diff --git a/kded/khostname.cpp b/kded/khostname.cpp
index 9b57e5362..168ad0f56 100644
--- a/kded/khostname.cpp
+++ b/kded/khostname.cpp
@@ -365,7 +365,7 @@ void KHostName::changeSessionManager()
int main(int argc, char **argv)
{
- KLocale::setMainCatalogue("kdelibs");
+ KLocale::setMainCatalogue("tdelibs");
KAboutData d(appName, I18N_NOOP("KDontChangeTheHostName"), appVersion,
I18N_NOOP("Informs KDE about a change in hostname"),
KAboutData::License_GPL, "(c) 2001 Waldo Bastian");