diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:48:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-03 22:40:13 +0900 |
commit | 84057ea26e8662283fd441a21067bdf1f599e82e (patch) | |
tree | 1a2427a48fc75ef8b75e3b5ad2e61faf8148490a /src/modules/actioneditor | |
parent | 33c7bc399db613fbeabadce7090cdffe7ad90615 (diff) | |
download | kvirc-84057ea26e8662283fd441a21067bdf1f599e82e.tar.gz kvirc-84057ea26e8662283fd441a21067bdf1f599e82e.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit ee077affc0b8b1df873d13d00e66e8044e5d505b)
Diffstat (limited to 'src/modules/actioneditor')
-rw-r--r-- | src/modules/actioneditor/actioneditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/actioneditor/actioneditor.cpp b/src/modules/actioneditor/actioneditor.cpp index 8fdd1bd0..705233f3 100644 --- a/src/modules/actioneditor/actioneditor.cpp +++ b/src/modules/actioneditor/actioneditor.cpp @@ -659,7 +659,7 @@ KviActionEditor::KviActionEditor(TQWidget * par) m_pListView = new KviActionEditorListView(box); //m_pListView->setMultiSelection(false); m_pListView->setShowSortIndicator(true); - m_pListView->setFocusPolicy(TQ_StrongFocus); + m_pListView->setFocusPolicy(TQWidget::StrongFocus); connect(m_pListView,TQT_SIGNAL(currentChanged(KviTalListViewItem *)),this,TQT_SLOT(currentChanged(KviTalListViewItem *))); |