diff options
author | Michele Calgaro <[email protected]> | 2023-08-12 18:42:46 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-16 13:11:05 +0900 |
commit | eac5a923bfe691153309b671a4aa0c8a31d9a776 (patch) | |
tree | 82a9e4f40eb0c35c33b771f3e7689d9b1ffacf54 /src/projects/k3bview.cpp | |
parent | bbf8323611cd45fff405a3f8bd24516e404d5aa8 (diff) | |
download | k3b-eac5a923bfe691153309b671a4aa0c8a31d9a776.tar.gz k3b-eac5a923bfe691153309b671a4aa0c8a31d9a776.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/projects/k3bview.cpp')
-rw-r--r-- | src/projects/k3bview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/projects/k3bview.cpp b/src/projects/k3bview.cpp index df3384d..717aa7f 100644 --- a/src/projects/k3bview.cpp +++ b/src/projects/k3bview.cpp @@ -149,7 +149,7 @@ void K3bView::addPluginButtons( int projectType ) void K3bView::slotPluginButtonClicked() { - TQObject* o = TQT_TQOBJECT(const_cast<TQT_BASE_OBJECT_NAME*>(sender())); + TQObject* o = const_cast<TQObject*>(sender()); if( K3bProjectPlugin* p = m_plugins[static_cast<void*>(o)] ) { if( p->hasGUI() ) { K3bProjectPluginDialog dlg( p, doc(), this ); |