diff options
author | Michele Calgaro <[email protected]> | 2024-01-07 19:46:28 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-09 10:51:12 +0900 |
commit | c62d6a21f065af251111a7071f203f5812263f8f (patch) | |
tree | 4fdd33b8690f04c2a4c92784c0668fda0c6e32b7 /kbarcode/commands.cpp | |
parent | 97a76f36dbf0d4da6e63805195b911ab0be6b537 (diff) | |
download | kbarcode-c62d6a21f065af251111a7071f203f5812263f8f.tar.gz kbarcode-c62d6a21f065af251111a7071f203f5812263f8f.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit a94d6ed6aa6bb9a8fb52a8132a92d2110b7fc315)
Diffstat (limited to 'kbarcode/commands.cpp')
-rw-r--r-- | kbarcode/commands.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kbarcode/commands.cpp b/kbarcode/commands.cpp index ea1c790..cf9c761 100644 --- a/kbarcode/commands.cpp +++ b/kbarcode/commands.cpp @@ -59,7 +59,7 @@ CommandUtils::CommandUtils(TCanvasItem* item) c = m_canvas_item->canvas(); /* NOT NEEDED: if( m_canvas_item && m_canvas_item->item() ) - connect( m_canvas_item->item(), TQT_SIGNAL( destroyed() ), this, TQT_SLOT( documentItemDeleted() ) ); + connect( m_canvas_item->item(), TQ_SIGNAL( destroyed() ), this, TQ_SLOT( documentItemDeleted() ) ); */ } @@ -125,7 +125,7 @@ void NewItemCommand::execute() m_item->addRef(); /* NOT NEEDED: - connect( m_object, TQT_SIGNAL( destroyed() ), this, TQT_SLOT( documentItemDeleted() ) ); + connect( m_object, TQ_SIGNAL( destroyed() ), this, TQ_SLOT( documentItemDeleted() ) ); */ } } @@ -506,7 +506,7 @@ DeleteCommand::~DeleteCommand() { DocumentItem* item = m_canvas_item->item(); if( item ) - item->disconnect( item, TQT_SIGNAL( destroyed() ), this, 0 ); + item->disconnect( item, TQ_SIGNAL( destroyed() ), this, 0 ); delete m_canvas_item; } } |