summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/dialogs/selectopdlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/dialogs/selectopdlg.h')
-rw-r--r--umbrello/umbrello/dialogs/selectopdlg.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/umbrello/umbrello/dialogs/selectopdlg.h b/umbrello/umbrello/dialogs/selectopdlg.h
index c5d8c93b..4bbcf52b 100644
--- a/umbrello/umbrello/dialogs/selectopdlg.h
+++ b/umbrello/umbrello/dialogs/selectopdlg.h
@@ -15,12 +15,12 @@
#include <kdialogbase.h>
-#include <qgroupbox.h>
+#include <tqgroupbox.h>
#include <kcombobox.h>
-#include <qradiobutton.h>
-#include <qbuttongroup.h>
-#include <qlineedit.h>
-#include <qlabel.h>
+#include <tqradiobutton.h>
+#include <tqbuttongroup.h>
+#include <tqlineedit.h>
+#include <tqlabel.h>
#include "../classifier.h"
class UMLView;
@@ -58,7 +58,7 @@ public:
*
* @return The operation to display.
*/
- QString getOpText();
+ TQString getOpText();
/**
* Return whether the user selected a class operation
@@ -74,41 +74,41 @@ public:
*
* @return Returns the sequence number for the operation.
*/
- QString getSeqNumber();
+ TQString getSeqNumber();
/**
* Set the sequence number text.
*
* @param num The number to set the sequence to.
*/
- void setSeqNumber(const QString &num);
+ void setSeqNumber(const TQString &num);
/**
* Set the custom operation text.
*
* @param op The operation to set as the custom operation.
*/
- void setCustomOp(const QString &op);
+ void setCustomOp(const TQString &op);
/**
* Set the class operation text.
*
* @param op The operation to set as the class operation.
* @return false if no such operation exists.
*/
- bool setClassOp(const QString &op);
+ bool setClassOp(const TQString &op);
protected:
/**
* Inserts @p type into the type-combobox as well as its completion object.
*/
- void insertOperation( const QString& type, int index = -1 );
+ void insertOperation( const TQString& type, int index = -1 );
private:
- QGroupBox * m_pOpGB;
+ TQGroupBox * m_pOpGB;
KComboBox * m_pOpCB;
- QLabel * m_pSeqL;
- QLineEdit * m_pOpLE, * m_pSeqLE;
- QRadioButton * m_pCustomRB, * m_pOpRB;
- QButtonGroup * m_pOpBG, * m_pDocGB;
- QString m_Text;
+ TQLabel * m_pSeqL;
+ TQLineEdit * m_pOpLE, * m_pSeqLE;
+ TQRadioButton * m_pCustomRB, * m_pOpRB;
+ TQButtonGroup * m_pOpBG, * m_pDocGB;
+ TQString m_Text;
int m_nOpCount;
int m_id; ///< takes on the value OP or CUSTOM according to what the user selected
UMLView *m_pView;