Changeset 90 in ntrip
- Timestamp:
- Aug 31, 2006, 7:40:47 PM (18 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncgetthread.cpp
r89 r90 35 35 _mountPoint = mountPoint; 36 36 _staID = mountPoint.path().mid(1).toAscii(); 37 38 cout << ">" << _staID.data() << "<" << endl;39 37 _format = format; 40 cout << ">" << _format.data() << "<" << endl;41 38 _socket = 0; 42 39 } -
trunk/BNC/bnctabledlg.cpp
r88 r90 21 21 // Constructor 22 22 //////////////////////////////////////////////////////////////////////////// 23 bncTableDlg::bncTableDlg(QWidget* parent, const QString& proxyHost, 24 int proxyPort) : QDialog(parent) { 25 26 _proxyHost = proxyHost; 27 _proxyPort = proxyPort; 23 bncTableDlg::bncTableDlg(QWidget* parent) : QDialog(parent) { 28 24 29 25 setMinimumSize(600,400); -
trunk/BNC/bnctabledlg.h
r88 r90 9 9 10 10 public: 11 bncTableDlg(QWidget* parent , const QString& proxyHost, int proxyPort);11 bncTableDlg(QWidget* parent); 12 12 ~bncTableDlg(); 13 13 … … 20 20 21 21 private: 22 QString _proxyHost;23 int _proxyPort;24 25 22 QLabel* _casterHostLabel; 26 23 QLabel* _casterPortLabel; -
trunk/BNC/bncwindow.cpp
r88 r90 172 172 //////////////////////////////////////////////////////////////////////////// 173 173 void bncWindow::slotAddMountPoints() { 174 bncTableDlg* dlg = new bncTableDlg(this, _proxyHostLineEdit->text(), 175 _proxyPortLineEdit->text().toInt()); 174 bncTableDlg* dlg = new bncTableDlg(this); 176 175 dlg->move(this->pos().x()+50, this->pos().y()+50); 177 176 connect(dlg, SIGNAL(newMountPoints(QStringList*)),
Note:
See TracChangeset
for help on using the changeset viewer.