diff options
author | Michele Calgaro <[email protected]> | 2023-11-26 02:33:14 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-26 17:32:41 +0900 |
commit | d31a7027d0b8e2237b1b398e436e82e9944b38cb (patch) | |
tree | 1cd933e46759d2209dad0c74090f1e3487ab4b3e /kdevdesigner/designer/actiondnd.h | |
parent | 8308ebcedcc01c7588346da09b69b97b5c8e8059 (diff) | |
download | tdevelop-d31a7027d0b8e2237b1b398e436e82e9944b38cb.tar.gz tdevelop-d31a7027d0b8e2237b1b398e436e82e9944b38cb.zip |
Replaced various '#define' with actual strings - part 4
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 676a13490dc7163e5c99a0f39094a2a4148d3963)
Diffstat (limited to 'kdevdesigner/designer/actiondnd.h')
-rw-r--r-- | kdevdesigner/designer/actiondnd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kdevdesigner/designer/actiondnd.h b/kdevdesigner/designer/actiondnd.h index 62166ffe..ae8d8df0 100644 --- a/kdevdesigner/designer/actiondnd.h +++ b/kdevdesigner/designer/actiondnd.h @@ -86,7 +86,7 @@ class QDesignerActionGroup : public TQActionGroup public: QDesignerActionGroup( TQObject *parent ) - : TQActionGroup( ::tqqt_cast<TQActionGroup*>(parent) ? parent : 0 ), wid( 0 ), idx( -1 ) { init(); } + : TQActionGroup( ::tqt_cast<TQActionGroup*>(parent) ? parent : 0 ), wid( 0 ), idx( -1 ) { init(); } void init(); @@ -122,9 +122,9 @@ class QDesignerAction : public TQAction public: QDesignerAction( TQObject *parent ) - : TQAction( ::tqqt_cast<TQActionGroup*>(parent) ? parent : 0 ), wid( 0 ), idx( -1 ), widgetToInsert( 0 ) { init(); } + : TQAction( ::tqt_cast<TQActionGroup*>(parent) ? parent : 0 ), wid( 0 ), idx( -1 ), widgetToInsert( 0 ) { init(); } QDesignerAction( TQWidget *w, TQObject *parent ) - : TQAction( ::tqqt_cast<TQActionGroup*>(parent) ? parent : 0 ), wid( 0 ), idx( -1 ), widgetToInsert( w ) { init(); } + : TQAction( ::tqt_cast<TQActionGroup*>(parent) ? parent : 0 ), wid( 0 ), idx( -1 ), widgetToInsert( w ) { init(); } void init(); |