diff options
author | Michele Calgaro <[email protected]> | 2023-08-12 18:43:15 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-16 22:18:34 +0900 |
commit | 2ec11ba03e87e734e3fa95f59385049feb82098b (patch) | |
tree | fbe69ff562e758268f3be479356b48b03e67bbd2 /src/gui/studio/SynthPluginManagerDialog.cpp | |
parent | 5f88991f1f2ff15f859d2cbd701f26c378841fe0 (diff) | |
download | rosegarden-2ec11ba03e87e734e3fa95f59385049feb82098b.tar.gz rosegarden-2ec11ba03e87e734e3fa95f59385049feb82098b.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/gui/studio/SynthPluginManagerDialog.cpp')
-rw-r--r-- | src/gui/studio/SynthPluginManagerDialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/studio/SynthPluginManagerDialog.cpp b/src/gui/studio/SynthPluginManagerDialog.cpp index de2c3d0..4feb191 100644 --- a/src/gui/studio/SynthPluginManagerDialog.cpp +++ b/src/gui/studio/SynthPluginManagerDialog.cpp @@ -236,7 +236,7 @@ SynthPluginManagerDialog::SynthPluginManagerDialog(TQWidget *parent, int instrumentNo = -1; for (unsigned int i = 0; i < m_guiButtons.size(); ++i) { - if (TQT_BASE_OBJECT_CONST(s) == TQT_BASE_OBJECT(m_guiButtons[i])) + if (s == m_guiButtons[i]) instrumentNo = i; } @@ -258,7 +258,7 @@ SynthPluginManagerDialog::SynthPluginManagerDialog(TQWidget *parent, int instrumentNo = -1; for (unsigned int i = 0; i < m_controlsButtons.size(); ++i) { - if (TQT_BASE_OBJECT_CONST(s) == TQT_BASE_OBJECT(m_controlsButtons[i])) + if (s == m_controlsButtons[i]) instrumentNo = i; } @@ -283,7 +283,7 @@ SynthPluginManagerDialog::SynthPluginManagerDialog(TQWidget *parent, int instrumentNo = -1; for (unsigned int i = 0; i < m_synthCombos.size(); ++i) { - if (TQT_BASE_OBJECT_CONST(s) == TQT_BASE_OBJECT(m_synthCombos[i])) + if (s == m_synthCombos[i]) instrumentNo = i; } |