summaryrefslogtreecommitdiffstats
path: root/kttsd/filters
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
parentd479daee57f586dcd10d91270e0d1a8ebe41a494 (diff)
downloadtdeaccessibility-96900aaa4094c012cea79188225fd1e1d43f5ce7.tar.gz
tdeaccessibility-96900aaa4094c012cea79188225fd1e1d43f5ce7.zip
Additional renaming of kde to tde
Diffstat (limited to 'kttsd/filters')
-rw-r--r--kttsd/filters/sbd/sbdconf.cpp4
-rw-r--r--kttsd/filters/sbd/sbdconf.h2
-rw-r--r--kttsd/filters/stringreplacer/stringreplacerconf.cpp6
-rw-r--r--kttsd/filters/stringreplacer/stringreplacerconf.h2
-rw-r--r--kttsd/filters/talkerchooser/talkerchooserconf.cpp4
-rw-r--r--kttsd/filters/talkerchooser/talkerchooserconf.h2
-rw-r--r--kttsd/filters/xhtml2ssml/Doxyfile4
-rw-r--r--kttsd/filters/xhtml2ssml/xhtml2ssml.kdevelop4
-rw-r--r--kttsd/filters/xhtml2ssml/xhtml2ssml.kdevses10
-rw-r--r--kttsd/filters/xmltransformer/xmltransformerproc.cpp2
10 files changed, 20 insertions, 20 deletions
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<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/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<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;
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<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/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 @@
<?xml version = '1.0'?>
-<kdevelop>
+<tdevelop>
<general>
<author>Paul Giannaros</author>
<email>ceruleanblaze@gmail.com</email>
@@ -109,4 +109,4 @@
<recursivewhencommitremove>true</recursivewhencommitremove>
<revertoptions>-C</revertoptions>
</kdevcvsservice>
-</kdevelop>
+</tdevelop>
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 @@
<!DOCTYPE KDevPrjSession>
<KDevPrjSession>
<DocsAndViews NumberOfDocuments="5" >
- <Doc0 NumberOfViews="1" URL="file:/home/paul/Kdecvs/kdeaccessibility/kttsd/filters/xhtml2ssml.cpp" >
+ <Doc0 NumberOfViews="1" URL="file:/home/paul/Kdecvs/tdeaccessibility/kttsd/filters/xhtml2ssml.cpp" >
<View0 line="63" Type="Source" />
</Doc0>
- <Doc1 NumberOfViews="1" URL="file:/home/paul/Kdecvs/kdeaccessibility/kttsd/filters/xhtml2ssml.h" >
+ <Doc1 NumberOfViews="1" URL="file:/home/paul/Kdecvs/tdeaccessibility/kttsd/filters/xhtml2ssml.h" >
<View0 line="21" Type="Source" />
</Doc1>
- <Doc2 NumberOfViews="1" URL="file:/home/paul/Kdecvs/kdeaccessibility/kttsd/filters/main.cpp" >
+ <Doc2 NumberOfViews="1" URL="file:/home/paul/Kdecvs/tdeaccessibility/kttsd/filters/main.cpp" >
<View0 line="17" Type="Source" />
</Doc2>
- <Doc3 NumberOfViews="1" URL="file:/home/paul/Kdecvs/kdeaccessibility/kttsd/filters/xmlelement.cpp" >
+ <Doc3 NumberOfViews="1" URL="file:/home/paul/Kdecvs/tdeaccessibility/kttsd/filters/xmlelement.cpp" >
<View0 line="72" Type="Source" />
</Doc3>
- <Doc4 NumberOfViews="1" URL="file:/home/paul/Kdecvs/kdeaccessibility/kttsd/filters/xmlelement.h" >
+ <Doc4 NumberOfViews="1" URL="file:/home/paul/Kdecvs/tdeaccessibility/kttsd/filters/xmlelement.h" >
<View0 line="75" Type="Source" />
</Doc4>
</DocsAndViews>
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 <tqregexp.h>
// KDE includes.
-#include <kdeversion.h>
+#include <tdeversion.h>
#include <kconfig.h>
#include <ktempfile.h>
#include <kstandarddirs.h>