From 96900aaa4094c012cea79188225fd1e1d43f5ce7 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 16 Nov 2011 13:46:22 -0600 Subject: Additional renaming of kde to tde --- kttsd/filters/sbd/sbdconf.cpp | 4 ++-- kttsd/filters/sbd/sbdconf.h | 2 +- kttsd/filters/stringreplacer/stringreplacerconf.cpp | 6 +++--- kttsd/filters/stringreplacer/stringreplacerconf.h | 2 +- kttsd/filters/talkerchooser/talkerchooserconf.cpp | 4 ++-- kttsd/filters/talkerchooser/talkerchooserconf.h | 2 +- kttsd/filters/xhtml2ssml/Doxyfile | 4 ++-- kttsd/filters/xhtml2ssml/xhtml2ssml.kdevelop | 4 ++-- kttsd/filters/xhtml2ssml/xhtml2ssml.kdevses | 10 +++++----- kttsd/filters/xmltransformer/xmltransformerproc.cpp | 2 +- 10 files changed, 20 insertions(+), 20 deletions(-) (limited to 'kttsd/filters') diff --git a/kttsd/filters/sbd/sbdconf.cpp b/kttsd/filters/sbd/sbdconf.cpp index 0460521..812a81d 100644 --- a/kttsd/filters/sbd/sbdconf.cpp +++ b/kttsd/filters/sbd/sbdconf.cpp @@ -68,7 +68,7 @@ SbdConf::SbdConf( TQWidget *parent, const char *name, const TQStringList& /*args m_widget = new SbdConfWidget(this, "SbdConfigWidget"); tqlayout->addWidget(m_widget); - // Determine if kdeutils Regular Expression Editor is installed. + // Determine if tdeutils Regular Expression Editor is installed. m_reEditorInstalled = !KTrader::self()->query("KRegExpEditor/KRegExpEditor").isEmpty(); m_widget->reButton->setEnabled( m_reEditorInstalled ); @@ -214,7 +214,7 @@ void SbdConf::slotReButton_clicked() KParts::ComponentFactory::createInstanceFromQuery( "KRegExpEditor/KRegExpEditor" ); if ( editorDialog ) { - // kdeutils was installed, so the dialog was found. Fetch the editor interface. + // tdeutils was installed, so the dialog was found. Fetch the editor interface. KRegExpEditorInterface *reEditor = static_cast(editorDialog->qt_cast( "KRegExpEditorInterface" ) ); Q_ASSERT( reEditor ); // This should not fail!// now use the editor. diff --git a/kttsd/filters/sbd/sbdconf.h b/kttsd/filters/sbd/sbdconf.h index d2e2ae0..32d80bc 100644 --- a/kttsd/filters/sbd/sbdconf.h +++ b/kttsd/filters/sbd/sbdconf.h @@ -131,7 +131,7 @@ class SbdConf : public KttsFilterConf // Configuration Widget. SbdConfWidget* m_widget; - // True if kdeutils Regular Expression Editor is installed. + // True if tdeutils Regular Expression Editor is installed. bool m_reEditorInstalled; // Language Code. TQStringList m_languageCodeList; diff --git a/kttsd/filters/stringreplacer/stringreplacerconf.cpp b/kttsd/filters/stringreplacer/stringreplacerconf.cpp index ab71382..4d4ea72 100644 --- a/kttsd/filters/stringreplacer/stringreplacerconf.cpp +++ b/kttsd/filters/stringreplacer/stringreplacerconf.cpp @@ -99,7 +99,7 @@ StringReplacerConf::StringReplacerConf( TQWidget *parent, const char *name, cons connect(m_widget->appIdLineEdit, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(configChanged())); - // Determine if kdeutils Regular Expression Editor is installed. + // Determine if tdeutils Regular Expression Editor is installed. m_reEditorInstalled = !KTrader::self()->query("KRegExpEditor/KRegExpEditor").isEmpty(); // Set up defaults. @@ -655,7 +655,7 @@ void StringReplacerConf::slotRemoveButton_clicked() void StringReplacerConf::slotTypeButtonGroup_clicked() { - // Enable Regular Expression Editor button if editor is installed (requires kdeutils). + // Enable Regular Expression Editor button if editor is installed (requires tdeutils). if ( !m_editWidget ) return; m_editWidget->matchButton->setEnabled( m_editWidget->regexpRadioButton->isOn() && m_reEditorInstalled ); } @@ -670,7 +670,7 @@ void StringReplacerConf::slotMatchButton_clicked() KParts::ComponentFactory::createInstanceFromQuery( "KRegExpEditor/KRegExpEditor" ); if ( editorDialog ) { - // kdeutils was installed, so the dialog was found. Fetch the editor interface. + // tdeutils was installed, so the dialog was found. Fetch the editor interface. KRegExpEditorInterface *reEditor = static_cast(editorDialog->qt_cast( "KRegExpEditorInterface" ) ); Q_ASSERT( reEditor ); // This should not fail!// now use the editor. diff --git a/kttsd/filters/stringreplacer/stringreplacerconf.h b/kttsd/filters/stringreplacer/stringreplacerconf.h index fe99f3f..302aff3 100644 --- a/kttsd/filters/stringreplacer/stringreplacerconf.h +++ b/kttsd/filters/stringreplacer/stringreplacerconf.h @@ -150,7 +150,7 @@ class StringReplacerConf : public KttsFilterConf // Edit Dialog and widget. KDialogBase* m_editDlg; EditReplacementWidget* m_editWidget; - // True if kdeutils Regular Expression Editor is installed. + // True if tdeutils Regular Expression Editor is installed. bool m_reEditorInstalled; // Language Codes. TQStringList m_languageCodeList; diff --git a/kttsd/filters/talkerchooser/talkerchooserconf.cpp b/kttsd/filters/talkerchooser/talkerchooserconf.cpp index 350f845..2e539f1 100644 --- a/kttsd/filters/talkerchooser/talkerchooserconf.cpp +++ b/kttsd/filters/talkerchooser/talkerchooserconf.cpp @@ -61,7 +61,7 @@ TalkerChooserConf::TalkerChooserConf( TQWidget *parent, const char *name, const m_widget = new TalkerChooserConfWidget(this, "TalkerChooserConfigWidget"); tqlayout->addWidget(m_widget); - // Determine if kdeutils Regular Expression Editor is installed. + // Determine if tdeutils Regular Expression Editor is installed. m_reEditorInstalled = !KTrader::self()->query("KRegExpEditor/KRegExpEditor").isEmpty(); m_widget->reEditorButton->setEnabled(m_reEditorInstalled); @@ -204,7 +204,7 @@ void TalkerChooserConf::slotReEditorButton_clicked() KParts::ComponentFactory::createInstanceFromQuery( "KRegExpEditor/KRegExpEditor" ); if ( editorDialog ) { - // kdeutils was installed, so the dialog was found. Fetch the editor interface. + // tdeutils was installed, so the dialog was found. Fetch the editor interface. KRegExpEditorInterface *reEditor = static_cast(editorDialog->qt_cast( "KRegExpEditorInterface" ) ); Q_ASSERT( reEditor ); // This should not fail!// now use the editor. diff --git a/kttsd/filters/talkerchooser/talkerchooserconf.h b/kttsd/filters/talkerchooser/talkerchooserconf.h index 56dc326..5776fe1 100644 --- a/kttsd/filters/talkerchooser/talkerchooserconf.h +++ b/kttsd/filters/talkerchooser/talkerchooserconf.h @@ -126,7 +126,7 @@ class TalkerChooserConf : public KttsFilterConf private: // Configuration Widget. TalkerChooserConfWidget* m_widget; - // True if kdeutils Regular Expression Editor is installed. + // True if tdeutils Regular Expression Editor is installed. bool m_reEditorInstalled; // User's chosen Talker Code. TalkerCode m_talkerCode; diff --git a/kttsd/filters/xhtml2ssml/Doxyfile b/kttsd/filters/xhtml2ssml/Doxyfile index e3ad878..ce24bc1 100644 --- a/kttsd/filters/xhtml2ssml/Doxyfile +++ b/kttsd/filters/xhtml2ssml/Doxyfile @@ -3,7 +3,7 @@ #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- -PROJECT_NAME = xhtml2ssml.kdevelop +PROJECT_NAME = xhtml2ssml.tdevelop PROJECT_NUMBER = $VERSION$ OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO @@ -77,7 +77,7 @@ WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- -INPUT = /home/paul/Kdecvs/kdeaccessibility/kttsd/filters +INPUT = /home/paul/Kdecvs/tdeaccessibility/kttsd/filters FILE_PATTERNS = *.c \ *.cc \ *.cxx \ diff --git a/kttsd/filters/xhtml2ssml/xhtml2ssml.kdevelop b/kttsd/filters/xhtml2ssml/xhtml2ssml.kdevelop index 691735f..127265e 100644 --- a/kttsd/filters/xhtml2ssml/xhtml2ssml.kdevelop +++ b/kttsd/filters/xhtml2ssml/xhtml2ssml.kdevelop @@ -1,5 +1,5 @@ - + Paul Giannaros ceruleanblaze@gmail.com @@ -109,4 +109,4 @@ true -C - + diff --git a/kttsd/filters/xhtml2ssml/xhtml2ssml.kdevses b/kttsd/filters/xhtml2ssml/xhtml2ssml.kdevses index 7128bc6..0f08b5f 100644 --- a/kttsd/filters/xhtml2ssml/xhtml2ssml.kdevses +++ b/kttsd/filters/xhtml2ssml/xhtml2ssml.kdevses @@ -2,19 +2,19 @@ - + - + - + - + - + diff --git a/kttsd/filters/xmltransformer/xmltransformerproc.cpp b/kttsd/filters/xmltransformer/xmltransformerproc.cpp index b8784cd..dcd9e74 100644 --- a/kttsd/filters/xmltransformer/xmltransformerproc.cpp +++ b/kttsd/filters/xmltransformer/xmltransformerproc.cpp @@ -26,7 +26,7 @@ #include // KDE includes. -#include +#include #include #include #include -- cgit v1.2.3