summaryrefslogtreecommitdiffstats
path: root/kttsd/filters/stringreplacer
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:46:22 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:46:22 -0600
commit96900aaa4094c012cea79188225fd1e1d43f5ce7 (patch)
tree3f50c9404193498dab310e10d6b57830bf7eeb49 /kttsd/filters/stringreplacer
parentd479daee57f586dcd10d91270e0d1a8ebe41a494 (diff)
downloadtdeaccessibility-96900aaa4094c012cea79188225fd1e1d43f5ce7.tar.gz
tdeaccessibility-96900aaa4094c012cea79188225fd1e1d43f5ce7.zip
Additional renaming of kde to tde
Diffstat (limited to 'kttsd/filters/stringreplacer')
-rw-r--r--kttsd/filters/stringreplacer/stringreplacerconf.cpp6
-rw-r--r--kttsd/filters/stringreplacer/stringreplacerconf.h2
2 files changed, 4 insertions, 4 deletions
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<TQDialog>( "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<KRegExpEditorInterface *>(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;