diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
commit | e654398e46e37abf457b2b1122ab898d2c51c49f (patch) | |
tree | d39ee6440f3c3663c3ead84a2d4cc2d034667e96 /arts/gui/kde/kcombobox_impl.h | |
parent | e4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff) | |
download | tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'arts/gui/kde/kcombobox_impl.h')
-rw-r--r-- | arts/gui/kde/kcombobox_impl.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arts/gui/kde/kcombobox_impl.h b/arts/gui/kde/kcombobox_impl.h index 52a95109..3041d352 100644 --- a/arts/gui/kde/kcombobox_impl.h +++ b/arts/gui/kde/kcombobox_impl.h @@ -26,21 +26,21 @@ #define ARTS_GUI_KCOMBOBOX_IMPL_H #include "kwidget_impl.h" #include <kcombobox.h> -#include <qobject.h> -#include <qstring.h> -#include <qstringlist.h> +#include <tqobject.h> +#include <tqstring.h> +#include <tqstringlist.h> namespace Arts { class KComboBox_impl; -class ComboBoxIntMapper :public QObject { +class ComboBoxIntMapper :public TQObject { Q_OBJECT KComboBox_impl *impl; public: ComboBoxIntMapper(KComboBox_impl *impl, KComboBox *co); public slots: - void activated(const QString &); + void activated(const TQString &); }; class KComboBox_impl : virtual public Arts::ComboBox_skel, @@ -48,8 +48,8 @@ class KComboBox_impl : virtual public Arts::ComboBox_skel, { protected: KComboBox * _kcombobox; - QString m_caption; - QString m_value; + TQString m_caption; + TQString m_value; std::vector<std::string> m_choices; void applyValue(); |