diff options
author | Michele Calgaro <[email protected]> | 2023-12-29 16:35:31 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-29 16:35:31 +0900 |
commit | 671d0469ada4df2d833d41d065793a06f4d87a65 (patch) | |
tree | 08f73c8f83ba7b8bdad08cdec881878a332ab6bf /src/picitem.cpp | |
parent | 15796910975130bce11a662cbe259913d791942f (diff) | |
download | ktechlab-671d0469ada4df2d833d41d065793a06f4d87a65.tar.gz ktechlab-671d0469ada4df2d833d41d065793a06f4d87a65.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/picitem.cpp')
-rw-r--r-- | src/picitem.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/picitem.cpp b/src/picitem.cpp index a091e93..7c212a8 100644 --- a/src/picitem.cpp +++ b/src/picitem.cpp @@ -40,7 +40,7 @@ PinItem::PinItem( FlowCodeDocument* _view, TQPoint position, bool _onLeft, PinSe view = _view; onLeft = _onLeft; - connect( m_pinSettings, TQT_SIGNAL(settingsChanged()), this, TQT_SLOT(updateDrawing()) ); + connect( m_pinSettings, TQ_SIGNAL(settingsChanged()), this, TQ_SLOT(updateDrawing()) ); if ( TQFontInfo(m_font).pixelSize() > 11 ) // It has to be > 11, not > 12, as (I think) pixelSize() rounds off the actual size m_font.setPixelSize(12); @@ -357,8 +357,8 @@ void PicItem::buttonStateChanged( const TQString &id, bool state ) update(); MicroSettingsDlg *dlg = new MicroSettingsDlg( microSettings, 0L, "microSettingsDlg" ); - connect( dlg, TQT_SIGNAL(okClicked()), this, TQT_SLOT(slotMicroSettingsDlgAccepted()) ); - connect( dlg, TQT_SIGNAL(applyClicked()), this, TQT_SLOT(slotMicroSettingsDlgAccepted()) ); + connect( dlg, TQ_SIGNAL(okClicked()), this, TQ_SLOT(slotMicroSettingsDlgAccepted()) ); + connect( dlg, TQ_SIGNAL(applyClicked()), this, TQ_SLOT(slotMicroSettingsDlgAccepted()) ); dlg->show(); // At this point the PIC is selected but this does not appear to the // user so we must deselect it when done. |