diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 21:46:38 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 21:46:38 -0600 |
commit | 46850422d6f857317455a6f7682bda9af4ba77f8 (patch) | |
tree | e7ccd19a8665415f634e26279d998173f7aa764f /tdeui/keditlistbox.h | |
parent | d4396ecfa2ba4c7cf44c028ea02b5de76878d6b8 (diff) | |
download | tdelibs-46850422d6f857317455a6f7682bda9af4ba77f8.tar.gz tdelibs-46850422d6f857317455a6f7682bda9af4ba77f8.zip |
Rename additional instances of KDE to TDE
Diffstat (limited to 'tdeui/keditlistbox.h')
-rw-r--r-- | tdeui/keditlistbox.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tdeui/keditlistbox.h b/tdeui/keditlistbox.h index bd8b19a64..069907a62 100644 --- a/tdeui/keditlistbox.h +++ b/tdeui/keditlistbox.h @@ -41,7 +41,7 @@ class KEditListBoxPrivate; * \image html keditlistbox.png "KDE Edit List Box Widget" * */ -class KDEUI_EXPORT KEditListBox : public TQGroupBox +class TDEUI_EXPORT KEditListBox : public TQGroupBox { Q_OBJECT TQ_OBJECT @@ -247,25 +247,25 @@ public: class CustomEditor { public: - KDEUI_EXPORT CustomEditor() + TDEUI_EXPORT CustomEditor() : m_representationWidget( 0L ), m_lineEdit( 0L ) {} - KDEUI_EXPORT CustomEditor( TQWidget *repWidget, KLineEdit *edit ) + TDEUI_EXPORT CustomEditor( TQWidget *repWidget, KLineEdit *edit ) : m_representationWidget( repWidget ), m_lineEdit( edit ) {} - KDEUI_EXPORT CustomEditor( KComboBox *combo ); + TDEUI_EXPORT CustomEditor( KComboBox *combo ); - KDEUI_EXPORT void setRepresentationWidget( TQWidget *repWidget ) { + TDEUI_EXPORT void setRepresentationWidget( TQWidget *repWidget ) { m_representationWidget = repWidget; } - KDEUI_EXPORT void setLineEdit( KLineEdit *edit ) { + TDEUI_EXPORT void setLineEdit( KLineEdit *edit ) { m_lineEdit = edit; } - KDEUI_EXPORT virtual TQWidget *representationWidget() const { + TDEUI_EXPORT virtual TQWidget *representationWidget() const { return m_representationWidget; } - KDEUI_EXPORT virtual KLineEdit *lineEdit() const { + TDEUI_EXPORT virtual KLineEdit *lineEdit() const { return m_lineEdit; } |