Changeset 90 in ntrip


Ignore:
Timestamp:
Aug 31, 2006, 7:40:47 PM (18 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncgetthread.cpp

    r89 r90  
    3535  _mountPoint = mountPoint;
    3636  _staID      = mountPoint.path().mid(1).toAscii();
    37 
    38   cout << ">" << _staID.data() << "<" << endl;
    3937  _format     = format;
    40   cout << ">" << _format.data() << "<" << endl;
    4138  _socket     = 0;
    4239}
  • trunk/BNC/bnctabledlg.cpp

    r88 r90  
    2121// Constructor
    2222////////////////////////////////////////////////////////////////////////////
    23 bncTableDlg::bncTableDlg(QWidget* parent, const QString& proxyHost,
    24                          int proxyPort) : QDialog(parent) {
    25 
    26   _proxyHost = proxyHost;
    27   _proxyPort = proxyPort;
     23bncTableDlg::bncTableDlg(QWidget* parent) : QDialog(parent) {
    2824
    2925  setMinimumSize(600,400);
  • trunk/BNC/bnctabledlg.h

    r88 r90  
    99
    1010  public:
    11     bncTableDlg(QWidget* parent, const QString& proxyHost, int proxyPort);
     11    bncTableDlg(QWidget* parent);
    1212    ~bncTableDlg();
    1313
     
    2020
    2121  private:
    22     QString      _proxyHost;
    23     int          _proxyPort;
    24 
    2522    QLabel*      _casterHostLabel;
    2623    QLabel*      _casterPortLabel;
  • trunk/BNC/bncwindow.cpp

    r88 r90  
    172172////////////////////////////////////////////////////////////////////////////
    173173void bncWindow::slotAddMountPoints() {
    174   bncTableDlg* dlg = new bncTableDlg(this, _proxyHostLineEdit->text(),
    175                                      _proxyPortLineEdit->text().toInt());
     174  bncTableDlg* dlg = new bncTableDlg(this);
    176175  dlg->move(this->pos().x()+50, this->pos().y()+50);
    177176  connect(dlg, SIGNAL(newMountPoints(QStringList*)),
Note: See TracChangeset for help on using the changeset viewer.