diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:52:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:52:09 +0900 |
commit | fc155d8aea8d4f4c6b9df7ca65ff93c734403958 (patch) | |
tree | cd05f3ead10cf636524cdbaec8b818953e9286a8 /kmouth | |
parent | 300f2b98d8a95745009f83f14f136cfd2d22fb39 (diff) | |
download | tdeaccessibility-fc155d8aea8d4f4c6b9df7ca65ff93c734403958.tar.gz tdeaccessibility-fc155d8aea8d4f4c6b9df7ca65ff93c734403958.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmouth')
-rw-r--r-- | kmouth/phraselist.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmouth/phraselist.cpp b/kmouth/phraselist.cpp index 24df32f..a283406 100644 --- a/kmouth/phraselist.cpp +++ b/kmouth/phraselist.cpp @@ -51,7 +51,7 @@ PhraseList::PhraseList(TQWidget *parent, const char *name) : TQWidget(parent,nam TQVBoxLayout *layout = new TQVBoxLayout (this); listBox = new TDEListBox (this); - listBox->setFocusPolicy(TQ_NoFocus); + listBox->setFocusPolicy(TQWidget::NoFocus); listBox->setSelectionMode (TQListBox::Extended); TQWhatsThis::add (listBox, i18n("This list contains the history of spoken sentences. You can select sentences and press the speak button for re-speaking.")); layout->addWidget(listBox); @@ -66,7 +66,7 @@ PhraseList::PhraseList(TQWidget *parent, const char *name) : TQWidget(parent,nam rowLayout->addWidget(dictionaryCombo); lineEdit = new PhraseEdit ("", this); - lineEdit->setFocusPolicy(TQ_StrongFocus); + lineEdit->setFocusPolicy(TQWidget::StrongFocus); lineEdit->setFrame(true); lineEdit->setEchoMode(TQLineEdit::Normal); lineEdit->setCompletionObject (completion); @@ -77,7 +77,7 @@ PhraseList::PhraseList(TQWidget *parent, const char *name) : TQWidget(parent,nam TQIconSet icon = TDEGlobal::iconLoader()->loadIconSet("speak", TDEIcon::Small); speakButton = new TQPushButton (icon, i18n("&Speak"), this); - speakButton->setFocusPolicy(TQ_NoFocus); + speakButton->setFocusPolicy(TQWidget::NoFocus); speakButton->setAutoDefault(false); TQWhatsThis::add (speakButton, i18n("Speaks the currently active sentence(s). If there is some text in the edit field it is spoken. Otherwise the selected sentences in the history (if any) are spoken.")); rowLayout->addWidget(speakButton); |