diff options
Diffstat (limited to 'umbrello/umbrello/dialogs/assocpage.h')
-rw-r--r-- | umbrello/umbrello/dialogs/assocpage.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/umbrello/umbrello/dialogs/assocpage.h b/umbrello/umbrello/dialogs/assocpage.h index 60e1e339..a38aa2ac 100644 --- a/umbrello/umbrello/dialogs/assocpage.h +++ b/umbrello/umbrello/dialogs/assocpage.h @@ -13,10 +13,10 @@ #ifndef ASSOCPAGE_H #define ASSOCPAGE_H -#include <qwidget.h> -#include <qgroupbox.h> -#include <qlistbox.h> -#include <qptrlist.h> +#include <tqwidget.h> +#include <tqgroupbox.h> +#include <tqlistbox.h> +#include <tqptrlist.h> #include "../umlobject.h" #include "../umlview.h" @@ -38,7 +38,7 @@ * @author Paul Hensgen <phensgen@techie.com> * Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org */ -class AssocPage : public QWidget { +class AssocPage : public TQWidget { Q_OBJECT public: /** @@ -48,7 +48,7 @@ public: * @param v The view the UMLObject being represented. * @param o The UMLObject being represented */ - AssocPage(QWidget *parent, UMLView * v, UMLObject * o); + AssocPage(TQWidget *parent, UMLView * v, UMLObject * o); /** * Standard deconstructor. @@ -57,8 +57,8 @@ public: private: UMLObject * m_pObject; UMLView * m_pView; - QListBox * m_pAssocLB; - QGroupBox * m_pAssocGB; + TQListBox * m_pAssocLB; + TQGroupBox * m_pAssocGB; AssociationWidgetList m_List; ListPopupMenu * m_pMenu; @@ -67,9 +67,9 @@ private: */ void fillListBox(); public slots: - void slotDoubleClick(QListBoxItem * i); - void slotRightButtonClicked(QListBoxItem */* item*/, const QPoint &/* p*/); - void slotRightButtonPressed(QListBoxItem * item, const QPoint & p); + void slotDoubleClick(TQListBoxItem * i); + void slotRightButtonClicked(TQListBoxItem */* item*/, const TQPoint &/* p*/); + void slotRightButtonPressed(TQListBoxItem * item, const TQPoint & p); void slotPopupMenuSel(int id); }; |