summaryrefslogtreecommitdiffstats
path: root/parts/snippet
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-07-04 16:46:19 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-07-04 16:46:19 -0500
commit998ebd2e683e45140493910f76e692e96887b5d2 (patch)
tree4d75be7d82ab9ba5ebd7c95c5b64a265971183d2 /parts/snippet
parent9ba3adb356665bc27c3416c0b916efa89b366bde (diff)
downloadtdevelop-998ebd2e683e45140493910f76e692e96887b5d2.tar.gz
tdevelop-998ebd2e683e45140493910f76e692e96887b5d2.zip
Fix help files, kdevelop->tdevelop branding, fix startup.
Diffstat (limited to 'parts/snippet')
-rw-r--r--parts/snippet/README2
-rw-r--r--parts/snippet/snippet_part.cpp14
2 files changed, 8 insertions, 8 deletions
diff --git a/parts/snippet/README b/parts/snippet/README
index 7df3c4b5..731741e1 100644
--- a/parts/snippet/README
+++ b/parts/snippet/README
@@ -1,3 +1,3 @@
Please read the on-line, automaticaly updated KDevelop API documentation at:
-http://www.tdevelop.org
+http://www.kdevelop.org
or read the README.dox file.
diff --git a/parts/snippet/snippet_part.cpp b/parts/snippet/snippet_part.cpp
index 7501f77d..04993028 100644
--- a/parts/snippet/snippet_part.cpp
+++ b/parts/snippet/snippet_part.cpp
@@ -82,9 +82,9 @@ void SnippetPart::setupActions()
KAboutData* SnippetPart::aboutData()
{
KAboutData *data = new KAboutData ("snippetpart", I18N_NOOP("SnippetPart"), "1.1",
- I18N_NOOP( "SnippetPart for KDevelop" ),
+ I18N_NOOP( "SnippetPart for TDevelop" ),
KAboutData::License_LGPL_V2,
- I18N_NOOP( "(c) 2003" ), 0, "http://www.tdevelop.org");
+ I18N_NOOP( "(c) 2003" ), 0, "http://www.kdevelop.org");
data->addAuthor ("Robert Gruber", I18N_NOOP("Author"), "rgruber@users.sourceforge.net", "http://kmp3indexer.sf.net");
@@ -112,18 +112,18 @@ void SnippetPart::slotConfigWidget( KDialogBase *dlg )
TQStringList SnippetPart::getAllLanguages()
{
KTrader::OfferList languageSupportOffers =
- KTrader::self()->query(TQString::fromLatin1("KDevelop/LanguageSupport"),
- TQString::fromLatin1("[X-KDevelop-Version] == %1"
- ).arg( KDEVELOP_PLUGIN_VERSION ));
+ KTrader::self()->query(TQString::fromLatin1("TDevelop/LanguageSupport"),
+ TQString::fromLatin1("[X-TDevelop-Version] == %1"
+ ).arg( TDEVELOP_PLUGIN_VERSION ));
TQStringList languages;
for (KTrader::OfferList::ConstIterator it = languageSupportOffers.begin(); it != languageSupportOffers.end(); ++it)
{
- TQString language = (*it)->property("X-KDevelop-Language").toString();
+ TQString language = (*it)->property("X-TDevelop-Language").toString();
languages.append(language);
- kdDebug(9035) << "Found language: " << (*it)->property("X-KDevelop-Language").toString() << endl <<
+ kdDebug(9035) << "Found language: " << (*it)->property("X-TDevelop-Language").toString() << endl <<
"genericName(): " <<(*it)->genericName() << endl <<
"comment(): " <<(*it)->comment() << endl << endl;
}