summaryrefslogtreecommitdiffstats
path: root/kmouth
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:04:52 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:04:52 +0900
commit1cb737eca8ee850f3d0678b96d06a733a05db4d9 (patch)
tree4152f219d0169c7a30155cfd512a0ffcde61be54 /kmouth
parent7122d7432e2a34fbaa25f2aaeb25d121d120d9b7 (diff)
downloadtdeaccessibility-1cb737eca8ee850f3d0678b96d06a733a05db4d9.tar.gz
tdeaccessibility-1cb737eca8ee850f3d0678b96d06a733a05db4d9.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmouth')
-rw-r--r--kmouth/configwizard.h2
-rw-r--r--kmouth/kmouth.h2
-rw-r--r--kmouth/optionsdialog.h4
-rw-r--r--kmouth/phrasebook/phrasebook.h4
-rw-r--r--kmouth/phrasebook/phrasebookdialog.h6
-rw-r--r--kmouth/phrasebook/phrasetree.h2
-rw-r--r--kmouth/phraselist.h2
-rw-r--r--kmouth/speech.h2
-rw-r--r--kmouth/texttospeechsystem.h2
-rw-r--r--kmouth/wordcompletion/dictionarycreationwizard.h6
-rw-r--r--kmouth/wordcompletion/klanguagebutton.h2
-rw-r--r--kmouth/wordcompletion/wordcompletion.h2
-rw-r--r--kmouth/wordcompletion/wordcompletionwidget.h2
13 files changed, 19 insertions, 19 deletions
diff --git a/kmouth/configwizard.h b/kmouth/configwizard.h
index 47054c2..8560e6c 100644
--- a/kmouth/configwizard.h
+++ b/kmouth/configwizard.h
@@ -34,7 +34,7 @@ class CompletionWizardWidget;
*/
class ConfigWizard : public KWizard {
- Q_OBJECT
+ TQ_OBJECT
public:
ConfigWizard (TQWidget *parent, const char *name, TDEConfig *config);
diff --git a/kmouth/kmouth.h b/kmouth/kmouth.h
index 628128c..4155e96 100644
--- a/kmouth/kmouth.h
+++ b/kmouth/kmouth.h
@@ -54,7 +54,7 @@ class PhraseBook;
*/
class KMouthApp : public TDEMainWindow
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kmouth/optionsdialog.h b/kmouth/optionsdialog.h
index 6955b34..d5fc7f3 100644
--- a/kmouth/optionsdialog.h
+++ b/kmouth/optionsdialog.h
@@ -32,7 +32,7 @@ class WordCompletionWidget;
*/
class PreferencesWidget : public PreferencesUI {
- Q_OBJECT
+ TQ_OBJECT
public:
PreferencesWidget(TQWidget *parent, const char *name);
@@ -56,7 +56,7 @@ private:
*/
class OptionsDialog : public KDialogBase {
- Q_OBJECT
+ TQ_OBJECT
public:
OptionsDialog(TQWidget *parent);
diff --git a/kmouth/phrasebook/phrasebook.h b/kmouth/phrasebook/phrasebook.h
index 4fee8cc..2e1140e 100644
--- a/kmouth/phrasebook/phrasebook.h
+++ b/kmouth/phrasebook/phrasebook.h
@@ -147,7 +147,7 @@ public:
* @author Gunnar Schmi Dt
*/
class PhraseBookDrag: public TQDragObject {
- Q_OBJECT
+ TQ_OBJECT
public:
PhraseBookDrag (PhraseBook *book, TQWidget *dragSource = 0, const char *name = 0);
@@ -170,7 +170,7 @@ private:
};
class PhraseAction : public TDEAction {
- Q_OBJECT
+ TQ_OBJECT
public:
PhraseAction (const TQString& phrase, const TQString& cut, const TQObject* receiver, const char* slot, TDEActionCollection* parent)
diff --git a/kmouth/phrasebook/phrasebookdialog.h b/kmouth/phrasebook/phrasebookdialog.h
index 0665281..7c04336 100644
--- a/kmouth/phrasebook/phrasebookdialog.h
+++ b/kmouth/phrasebook/phrasebookdialog.h
@@ -73,7 +73,7 @@ private:
*/
class InitialPhraseBookWidget : public TQWidget {
- Q_OBJECT
+ TQ_OBJECT
public:
InitialPhraseBookWidget(TQWidget *parent, const char *name);
@@ -94,7 +94,7 @@ private:
* @author Gunnar Schmi Dt
*/
class StandardPhraseBookInsertAction : public TDEAction {
- Q_OBJECT
+ TQ_OBJECT
public:
StandardPhraseBookInsertAction (const KURL &url, const TQString& name, const TQObject* receiver, const char* slot, TDEActionCollection* parent)
@@ -142,7 +142,7 @@ protected:
class PhraseBookDialog : public TDEMainWindow {
friend class InitialPhraseBookWidget;
- Q_OBJECT
+ TQ_OBJECT
private:
/** Constructor. It is private because this class implements the singleton
diff --git a/kmouth/phrasebook/phrasetree.h b/kmouth/phrasebook/phrasetree.h
index a4936f4..b8d578e 100644
--- a/kmouth/phrasebook/phrasetree.h
+++ b/kmouth/phrasebook/phrasetree.h
@@ -59,7 +59,7 @@ private:
class PhraseTree : public TDEListView {
friend class PhraseTreeItem;
- Q_OBJECT
+ TQ_OBJECT
public:
PhraseTree (TQWidget *parent = 0, const char *name = 0);
diff --git a/kmouth/phraselist.h b/kmouth/phraselist.h
index 492082e..d27a74e 100644
--- a/kmouth/phraselist.h
+++ b/kmouth/phraselist.h
@@ -39,7 +39,7 @@ class WordCompletion;
*/
class PhraseList : public TQWidget {
- Q_OBJECT
+ TQ_OBJECT
public:
PhraseList(TQWidget *parent=0, const char *name=0);
diff --git a/kmouth/speech.h b/kmouth/speech.h
index 145b032..87fa3fd 100644
--- a/kmouth/speech.h
+++ b/kmouth/speech.h
@@ -28,7 +28,7 @@
*/
class Speech : public TQObject {
- Q_OBJECT
+ TQ_OBJECT
public:
enum CharacterCodec {
diff --git a/kmouth/texttospeechsystem.h b/kmouth/texttospeechsystem.h
index 8ad7782..67ae00e 100644
--- a/kmouth/texttospeechsystem.h
+++ b/kmouth/texttospeechsystem.h
@@ -30,7 +30,7 @@ class TDEConfig;
*/
class TextToSpeechSystem : public TQObject{
- Q_OBJECT
+ TQ_OBJECT
friend class TextToSpeechConfigurationWidget;
public:
diff --git a/kmouth/wordcompletion/dictionarycreationwizard.h b/kmouth/wordcompletion/dictionarycreationwizard.h
index fb82fcd..0e589ad 100644
--- a/kmouth/wordcompletion/dictionarycreationwizard.h
+++ b/kmouth/wordcompletion/dictionarycreationwizard.h
@@ -41,7 +41,7 @@ class MergeWidget;
* completion.
*/
class DictionaryCreationWizard : public KWizard {
- Q_OBJECT
+ TQ_OBJECT
public:
DictionaryCreationWizard (TQWidget *parent, const char *name,
@@ -76,7 +76,7 @@ private:
* @author Gunnar Schmi Dt
*/
class MergeWidget : public TQScrollView {
- Q_OBJECT
+ TQ_OBJECT
public:
MergeWidget(KWizard *parent, const char *name,
@@ -100,7 +100,7 @@ private:
* @author Gunnar Schmi Dt
*/
class CompletionWizardWidget : public KDEDocSourceUI {
- Q_OBJECT
+ TQ_OBJECT
friend class ConfigWizard;
public:
diff --git a/kmouth/wordcompletion/klanguagebutton.h b/kmouth/wordcompletion/klanguagebutton.h
index 385e363..d061b7e 100644
--- a/kmouth/wordcompletion/klanguagebutton.h
+++ b/kmouth/wordcompletion/klanguagebutton.h
@@ -39,7 +39,7 @@
*/
class KLanguageButton : public TQPushButton
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kmouth/wordcompletion/wordcompletion.h b/kmouth/wordcompletion/wordcompletion.h
index c7304f8..ff87820 100644
--- a/kmouth/wordcompletion/wordcompletion.h
+++ b/kmouth/wordcompletion/wordcompletion.h
@@ -8,7 +8,7 @@
*/
class WordCompletion : public TDECompletion {
friend class WordListWidget;
- Q_OBJECT
+ TQ_OBJECT
public:
WordCompletion();
diff --git a/kmouth/wordcompletion/wordcompletionwidget.h b/kmouth/wordcompletion/wordcompletionwidget.h
index a3f5088..80532b0 100644
--- a/kmouth/wordcompletion/wordcompletionwidget.h
+++ b/kmouth/wordcompletion/wordcompletionwidget.h
@@ -29,7 +29,7 @@ class KLanguageButton;
* @author Gunnar Schmi Dt
*/
class WordCompletionWidget : public WordCompletionUI {
- Q_OBJECT
+ TQ_OBJECT
public:
WordCompletionWidget(TQWidget *parent, const char *name);