diff options
Diffstat (limited to 'kexi/plugins/forms/widgets/kexidbimagebox.cpp')
| -rw-r--r-- | kexi/plugins/forms/widgets/kexidbimagebox.cpp | 42 | 
1 files changed, 21 insertions, 21 deletions
| diff --git a/kexi/plugins/forms/widgets/kexidbimagebox.cpp b/kexi/plugins/forms/widgets/kexidbimagebox.cpp index 1d74f94fd..2fec335dd 100644 --- a/kexi/plugins/forms/widgets/kexidbimagebox.cpp +++ b/kexi/plugins/forms/widgets/kexidbimagebox.cpp @@ -106,29 +106,29 @@ KexiDBImageBox::KexiDBImageBox( bool designMode, TQWidget *parent, const char *n  	m_paletteBackgroundColorChanged = false; //set this here, not before -	connect(m_popupMenu, TQT_SIGNAL(updateActionsAvailabilityRequested(bool&, bool&)),  -		this, TQT_SLOT(slotUpdateActionsAvailabilityRequested(bool&, bool&))); -	connect(m_popupMenu, TQT_SIGNAL(insertFromFileRequested(const KURL&)), -		this, TQT_SLOT(handleInsertFromFileAction(const KURL&))); -	connect(m_popupMenu, TQT_SIGNAL(saveAsRequested(const TQString&)), -		this, TQT_SLOT(handleSaveAsAction(const TQString&))); -	connect(m_popupMenu, TQT_SIGNAL(cutRequested()), -		this, TQT_SLOT(handleCutAction())); -	connect(m_popupMenu, TQT_SIGNAL(copyRequested()), -		this, TQT_SLOT(handleCopyAction())); -	connect(m_popupMenu, TQT_SIGNAL(pasteRequested()), -		this, TQT_SLOT(handlePasteAction())); -	connect(m_popupMenu, TQT_SIGNAL(clearRequested()), -		this, TQT_SLOT(clear())); -	connect(m_popupMenu, TQT_SIGNAL(showPropertiesRequested()), -		this, TQT_SLOT(handleShowPropertiesAction())); - -//	connect(m_popupMenu, TQT_SIGNAL(aboutToHide()), this, TQT_SLOT(slotAboutToHidePopupMenu())); +	connect(m_popupMenu, TQ_SIGNAL(updateActionsAvailabilityRequested(bool&, bool&)),  +		this, TQ_SLOT(slotUpdateActionsAvailabilityRequested(bool&, bool&))); +	connect(m_popupMenu, TQ_SIGNAL(insertFromFileRequested(const KURL&)), +		this, TQ_SLOT(handleInsertFromFileAction(const KURL&))); +	connect(m_popupMenu, TQ_SIGNAL(saveAsRequested(const TQString&)), +		this, TQ_SLOT(handleSaveAsAction(const TQString&))); +	connect(m_popupMenu, TQ_SIGNAL(cutRequested()), +		this, TQ_SLOT(handleCutAction())); +	connect(m_popupMenu, TQ_SIGNAL(copyRequested()), +		this, TQ_SLOT(handleCopyAction())); +	connect(m_popupMenu, TQ_SIGNAL(pasteRequested()), +		this, TQ_SLOT(handlePasteAction())); +	connect(m_popupMenu, TQ_SIGNAL(clearRequested()), +		this, TQ_SLOT(clear())); +	connect(m_popupMenu, TQ_SIGNAL(showPropertiesRequested()), +		this, TQ_SLOT(handleShowPropertiesAction())); + +//	connect(m_popupMenu, TQ_SIGNAL(aboutToHide()), this, TQ_SLOT(slotAboutToHidePopupMenu()));  //	if (m_chooser) {  		//we couldn't use m_chooser->setPopup() because of drawing problems -//		connect(m_chooser, TQT_SIGNAL(pressed()), this, TQT_SLOT(slotChooserPressed())); -//		connect(m_chooser, TQT_SIGNAL(released()), this, TQT_SLOT(slotChooserReleased())); -//		connect(m_chooser, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(slotToggled(bool))); +//		connect(m_chooser, TQ_SIGNAL(pressed()), this, TQ_SLOT(slotChooserPressed())); +//		connect(m_chooser, TQ_SIGNAL(released()), this, TQ_SLOT(slotChooserReleased())); +//		connect(m_chooser, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(slotToggled(bool)));  //	}  	setDataSource( TQString() ); //to initialize popup menu and actions availability | 
