Changeset 3292 in ntrip
- Timestamp:
- May 31, 2011, 4:00:51 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnctabledlg.cpp
r3188 r3292 68 68 _casterPasswordLineEdit = new QLineEdit(); 69 69 _casterPasswordLineEdit->setMaximumWidth(9*ww); 70 _casterPasswordLineEdit->setEchoMode(QLineEdit::Password EchoOnEdit);70 _casterPasswordLineEdit->setEchoMode(QLineEdit::Password); 71 71 72 72 _casterHostComboBox = new QComboBox(); … … 305 305 winMap->setGeometry( x(), int(y()+height()*1.3), 880, 440 ); 306 306 307 connect(this, SIGNAL(newPoint(QPointF, QString, QPen)), 308 winMap, SLOT(slotNewPoint(QPointF, QString, QPen))); 307 connect(this, SIGNAL(newPoint(QPointF, QString, QPen, double)), 308 winMap, SLOT(slotNewPoint(QPointF, QString, QPen, double))); 309 309 310 310 connect(this, SIGNAL(fitMap()), 311 311 winMap, SLOT(slotFitMap() )); 312 313 connect(this, SIGNAL(fitFont()), 314 winMap, SLOT(slotFitFont() )); 312 315 313 316 _buttonMap->setEnabled(false); … … 316 319 _buttonMap->setEnabled(true); 317 320 318 disconnect(this, SIGNAL(newPoint(QPointF, QString, QPen)), 319 winMap, SLOT(slotNewPoint(QPointF, QString, QPen))); 321 disconnect(this, SIGNAL(newPoint(QPointF, QString, QPen, double)), 322 winMap, SLOT(slotNewPoint(QPointF, QString, QPen, double))); 320 323 321 324 disconnect(this, SIGNAL(fitMap()), 322 325 winMap, SLOT(slotFitMap() )); 323 326 327 disconnect(this, SIGNAL(fitFont()), 328 winMap, SLOT(slotFitFont() )); 329 324 330 delete winMap; 325 331 } … … 343 349 site.resize(4); 344 350 345 emit newPoint(point, site, QPen(QBrush(QColor(0,0,255,200)), 1.5) ); 351 emit newPoint(point, site, QPen(QBrush(QColor(0,0,255,200)), 1.5), 1.5 ); 346 352 } 347 353 } … … 383 389 site.resize(4); 384 390 emit newPoint(QPointF(longitude.toDouble(),latitude.toDouble()), site, 385 QPen(QBrush(QColor(255,0,0,200)), 3 ));391 QPen(QBrush(QColor(255,0,0,200)), 3.0), 3.0 ); 386 392 } 387 393 } 388 394 } 389 395 emit newMountPoints(mountPoints); 396 emit fitFont(); 390 397 } 391 398
Note:
See TracChangeset
for help on using the changeset viewer.