diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:46:28 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:46:28 +0900 |
commit | a94d6ed6aa6bb9a8fb52a8132a92d2110b7fc315 (patch) | |
tree | 8959f605f78240e3f4553a85af33feedbd16f004 /kbarcode/commands.cpp | |
parent | 95d1e67dc4ccd69b814a2e1a0437c75017b92450 (diff) | |
download | kbarcode-a94d6ed6aa6bb9a8fb52a8132a92d2110b7fc315.tar.gz kbarcode-a94d6ed6aa6bb9a8fb52a8132a92d2110b7fc315.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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; } } |