Changeset 3629 in ntrip for trunk/BNC/bncwindow.cpp


Ignore:
Timestamp:
Jan 22, 2012, 6:35:30 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r3627 r3629  
    22562256  t_postProcessing* postProcessing = new t_postProcessing(this);
    22572257  connect(postProcessing, SIGNAL(finished()), this, SLOT(slotFinishedPostProcessing()));
     2258  connect(postProcessing, SIGNAL(progress(float)), this, SLOT(slotPostProgress(float)));
    22582259
    22592260  postProcessing->start();
     
    22722273// Progress Bar Change
    22732274////////////////////////////////////////////////////////////////////////////
    2274 void bncWindow::postProgress(float progress) {
     2275void bncWindow::slotPostProgress(float progress) {
     2276  cout << "slotPostProgress" << endl;
    22752277  if (_postProgressBar) {
    22762278    _postProgressBar->setValue(int(progress*100.0));
Note: See TracChangeset for help on using the changeset viewer.