Show
Ignore:
Timestamp:
05/28/08 13:49:40 (8 months ago)
Author:
eugene
Message:

Revised the owner edit dialog.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/qt4-gui/src/dialogs/ownereditdlg.h

    r6054 r6225  
    2323#include <QDialog> 
    2424 
    25 class QComboBox; 
    2625class QCheckBox; 
    2726class QLineEdit; 
    28 class QPushButton; 
    2927 
    3028namespace LicqQtGui 
    3129{ 
     30class ProtoComboBox; 
     31 
    3232class OwnerEditDlg : public QDialog 
    3333{ 
    3434  Q_OBJECT 
     35 
    3536public: 
    3637  OwnerEditDlg(unsigned long ppid = 0, QWidget* parent = NULL); 
     
    4041 
    4142private: 
    42   QPushButton* btnOk; 
    43   QPushButton* btnCancel; 
    4443  QLineEdit* edtId; 
    4544  QLineEdit* edtPassword; 
    46   QComboBox* cmbProtocol; 
     45  ProtoComboBox* cmbProtocol; 
    4746  QCheckBox* chkSave; 
     47  unsigned long myPpid; 
    4848}; 
    4949