From 38dca4b75c471ddf950e2f9f03801c550d7d26fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 26 Mar 2016 12:35:35 +0100 Subject: Initial TQt conversion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- part/kxeattributedialog.h | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'part/kxeattributedialog.h') diff --git a/part/kxeattributedialog.h b/part/kxeattributedialog.h index e2019b9..25b8879 100644 --- a/part/kxeattributedialog.h +++ b/part/kxeattributedialog.h @@ -20,23 +20,23 @@ #include "kxeattributedialogbase.h" -#include +#include class KXEAttributeDialog : public KXEAttributeDialogBase { Q_OBJECT public: - KXEAttributeDialog( QWidget * pParent = 0, const char * pszName = 0, bool fModal = true, WFlags fl = 0 ); + KXEAttributeDialog( TQWidget * pParent = 0, const char * pszName = 0, bool fModal = true, WFlags fl = 0 ); - const QString attributeNamespace() const { return m_strNamespace; } - const QString QName() const { return m_strQName; } - const QString Value() const { return m_strValue; } + const TQString attributeNamespace() const { return m_strNamespace; } + const TQString QName() const { return m_strQName; } + const TQString Value() const { return m_strValue; } /** * To be used for adding an attribute to new XML element. * - * @return see @ref QDialog::exec + * @return see @ref TQDialog::exec */ int exec( ); @@ -46,37 +46,37 @@ class KXEAttributeDialog : public KXEAttributeDialogBase void clearDialog(); // Check, if XML attribute name is OK - static QString checkName(const QString); + static TQString checkName(const TQString); // Check, if XML attribute value is OK - static QString checkValue(const QString); + static TQString checkValue(const TQString); // Check, if XML attribute namespace is OK - static QString checkNamespace(const QString); + static TQString checkNamespace(const TQString); protected slots: /** * Called, when user change attribute name. * Disables the OK button, if user input is wrong or incomplete. */ - void slotNameChanged(const QString &); + void slotNameChanged(const TQString &); /** * Called, when user change attribute value. * Disables the OK button, if user input is wrong or incomplete. */ - void slotValueChanged(const QString &); + void slotValueChanged(const TQString &); /** * Called, when user change attribute namespace. * Disables the OK button, if user input is wrong or incomplete. */ - void slotNamespaceChanged(const QString &); + void slotNamespaceChanged(const TQString &); protected: - QString m_strNamespace; - QString m_strQName; - QString m_strValue; + TQString m_strNamespace; + TQString m_strQName; + TQString m_strValue; }; #endif -- cgit v1.2.1