diff options
author | Michele Calgaro <[email protected]> | 2023-08-09 15:33:59 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-09 15:33:59 +0900 |
commit | 5f88991f1f2ff15f859d2cbd701f26c378841fe0 (patch) | |
tree | 0aa70c48242a531460dd0bdf48e9d4d9c186a5e5 /src/gui/studio/SynthPluginManagerDialog.cpp | |
parent | 685724904fb299b8fc1e719476f08654210141f1 (diff) | |
download | rosegarden-5f88991f1f2ff15f859d2cbd701f26c378841fe0.tar.gz rosegarden-5f88991f1f2ff15f859d2cbd701f26c378841fe0.zip |
Drop TQT_TQ*_CONST 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 13f641b..de2c3d0 100644 --- a/src/gui/studio/SynthPluginManagerDialog.cpp +++ b/src/gui/studio/SynthPluginManagerDialog.cpp @@ -231,7 +231,7 @@ SynthPluginManagerDialog::SynthPluginManagerDialog(TQWidget *parent, void SynthPluginManagerDialog::slotGUIButtonClicked() { - const TQObject *s = TQT_TQOBJECT_CONST(const_cast<const TQT_BASE_OBJECT_NAME*>(sender())); + const TQObject *s = sender(); int instrumentNo = -1; @@ -253,7 +253,7 @@ SynthPluginManagerDialog::SynthPluginManagerDialog(TQWidget *parent, void SynthPluginManagerDialog::slotControlsButtonClicked() { - const TQObject *s = TQT_TQOBJECT_CONST(const_cast<const TQT_BASE_OBJECT_NAME*>(sender())); + const TQObject *s = sender(); int instrumentNo = -1; @@ -275,7 +275,7 @@ SynthPluginManagerDialog::SynthPluginManagerDialog(TQWidget *parent, void SynthPluginManagerDialog::slotPluginChanged(int index) { - const TQObject *s = TQT_TQOBJECT_CONST(const_cast<const TQT_BASE_OBJECT_NAME*>(sender())); + const TQObject *s = sender(); RG_DEBUG << "SynthPluginManagerDialog::slotPluginChanged(" << index << ")" << endl; |