diff options
author | Michele Calgaro <[email protected]> | 2023-09-02 15:53:50 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-04 10:31:40 +0900 |
commit | 203566f83535401b5013d37c4e319b1278a4d650 (patch) | |
tree | aeeac7a86d9225fc54cc8c8c73df440fb9ba1ab5 /ksirc/toplevel.cpp | |
parent | c613d3df31b003c077f524cd7184590339b0c04d (diff) | |
download | tdenetwork-203566f83535401b5013d37c4e319b1278a4d650.tar.gz tdenetwork-203566f83535401b5013d37c4e319b1278a4d650.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit d37705184967f236c728938b2824abbed628ce26)
Diffstat (limited to 'ksirc/toplevel.cpp')
-rw-r--r-- | ksirc/toplevel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ksirc/toplevel.cpp b/ksirc/toplevel.cpp index d0f05756..5bf678d2 100644 --- a/ksirc/toplevel.cpp +++ b/ksirc/toplevel.cpp @@ -244,7 +244,7 @@ KSircTopLevel::KSircTopLevel(KSircProcess *_proc, const KSircChannel &channelInf #endif mainw = new KSircView(ksircProcess(), pan, kstn + "KSircView" ); - mainw->setFocusPolicy(TQ_NoFocus); + mainw->setFocusPolicy(TQWidget::NoFocus); nicks_box = new TQVBox(pan); @@ -253,7 +253,7 @@ KSircTopLevel::KSircTopLevel(KSircProcess *_proc, const KSircChannel &channelInf this, TQT_SLOT(setMode(TQString, int, TQString))); nicks = new aListBox(nicks_box, kstn + "aListBox"); - nicks->setFocusPolicy(TQ_NoFocus); + nicks->setFocusPolicy(TQWidget::NoFocus); //nicks->hide(); // default = only the main widget lag = new TQLabel(nicks_box); @@ -360,7 +360,7 @@ KSircTopLevel::KSircTopLevel(KSircProcess *_proc, const KSircChannel &channelInf // setup line editor - linee->setFocusPolicy(TQ_StrongFocus); + linee->setFocusPolicy(TQWidget::StrongFocus); linee->setFont(ksopts->defaultFont); if(ksopts->oneLineEntry == true) { |