diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-12 18:43:15 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-16 23:26:07 +0900 |
commit | 45016a2fba12ee4dc9ff29854504ae79a24fda11 (patch) | |
tree | fbe69ff562e758268f3be479356b48b03e67bbd2 /src/gui/studio/SynthPluginManagerDialog.cpp | |
parent | 4015988ca8f98d6b4fc43cee6cdd3a5895b3c3ca (diff) | |
download | rosegarden-45016a2fba12ee4dc9ff29854504ae79a24fda11.tar.gz rosegarden-45016a2fba12ee4dc9ff29854504ae79a24fda11.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 2ec11ba03e87e734e3fa95f59385049feb82098b)
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; } |