summaryrefslogtreecommitdiffstats
path: root/src/picitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/picitem.cpp')
-rw-r--r--src/picitem.cpp6
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.