diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 16:37:54 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:21:37 +0900 |
| commit | 9e94ee99cd260efb279f2c810ea2c2cc7839e6ae (patch) | |
| tree | 7d5a63225f7516ec924502bbbfcabf5d00ebd61f /part/kxe_viewelement.cpp | |
| parent | 21ab29e9b899ae5d211ac58ca7fea4e34f46e4b7 (diff) | |
| download | kxmleditor-9e94ee99.tar.gz kxmleditor-9e94ee99.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 4d0e92e869aeab286a753010ee87be3bd30cafe4)
Diffstat (limited to 'part/kxe_viewelement.cpp')
| -rw-r--r-- | part/kxe_viewelement.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/part/kxe_viewelement.cpp b/part/kxe_viewelement.cpp index 2c7b4ba..9d77de1 100644 --- a/part/kxe_viewelement.cpp +++ b/part/kxe_viewelement.cpp @@ -41,10 +41,10 @@ KXE_ViewElement::KXE_ViewElement( TQWidget * pParent, TDEConfig *pConfig, const setOpaqueResize(true); m_pConfig = pConfig; m_pViewAttributes = new KXE_ViewAttributes( this, "table of element attributes"); - connect( m_pViewAttributes, SIGNAL(sigContextMenuRequested(const TQString&,const TQPoint&)), this, SIGNAL(sigContextMenuRequested(const TQString&,const TQPoint&)) ); + connect( m_pViewAttributes, TQ_SIGNAL(sigContextMenuRequested(const TQString&,const TQPoint&)), this, TQ_SIGNAL(sigContextMenuRequested(const TQString&,const TQPoint&)) ); - connect( m_pViewAttributes, SIGNAL(sigAttributeNameChangedInplace(const TQDomAttr&, const TQString)), this, SIGNAL(sigAttributeNameChangedInplace(const TQDomAttr&, const TQString)) ); - connect( m_pViewAttributes, SIGNAL(sigAttributeValueChangedInplace(const TQDomAttr&, const TQString)), this, SIGNAL(sigAttributeValueChangedInplace(const TQDomAttr&, const TQString)) ); + connect( m_pViewAttributes, TQ_SIGNAL(sigAttributeNameChangedInplace(const TQDomAttr&, const TQString)), this, TQ_SIGNAL(sigAttributeNameChangedInplace(const TQDomAttr&, const TQString)) ); + connect( m_pViewAttributes, TQ_SIGNAL(sigAttributeValueChangedInplace(const TQDomAttr&, const TQString)), this, TQ_SIGNAL(sigAttributeValueChangedInplace(const TQDomAttr&, const TQString)) ); m_pViewPlainXML = new KTextEdit( this, "plain XML" ); m_pViewPlainXML->setReadOnly(true); @@ -64,7 +64,7 @@ KXE_ViewElement::KXE_ViewElement( TQWidget * pParent, TDEConfig *pConfig, const // Apply current configuration slotTextViewSettingsChanged(); // and make sure to be informed about its changes. - connect( KXMLEditorFactory::configuration()->textview(), SIGNAL(sigChanged()), this, SLOT(slotTextViewSettingsChanged()) ); + connect( KXMLEditorFactory::configuration()->textview(), TQ_SIGNAL(sigChanged()), this, TQ_SLOT(slotTextViewSettingsChanged()) ); } KXE_ViewElement::~KXE_ViewElement() |
