Changeset 6225 for trunk/qt4-gui/src/dialogs/ownereditdlg.h
- Timestamp:
- 05/28/08 13:49:40 (8 months ago)
- Files:
-
- 1 modified
-
trunk/qt4-gui/src/dialogs/ownereditdlg.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt4-gui/src/dialogs/ownereditdlg.h
r6054 r6225 23 23 #include <QDialog> 24 24 25 class QComboBox;26 25 class QCheckBox; 27 26 class QLineEdit; 28 class QPushButton;29 27 30 28 namespace LicqQtGui 31 29 { 30 class ProtoComboBox; 31 32 32 class OwnerEditDlg : public QDialog 33 33 { 34 34 Q_OBJECT 35 35 36 public: 36 37 OwnerEditDlg(unsigned long ppid = 0, QWidget* parent = NULL); … … 40 41 41 42 private: 42 QPushButton* btnOk;43 QPushButton* btnCancel;44 43 QLineEdit* edtId; 45 44 QLineEdit* edtPassword; 46 QComboBox* cmbProtocol;45 ProtoComboBox* cmbProtocol; 47 46 QCheckBox* chkSave; 47 unsigned long myPpid; 48 48 }; 49 49
