Changeset 142 in ntrip


Ignore:
Timestamp:
Sep 8, 2006, 2:14:11 PM (18 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 added
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC

    • Property svn:ignore
      •  

        old new  
        33bnc
        44anlagen
         5qrc_bnc.cpp
        56moc_bnccaster.cpp
        67moc_bncgetthread.cpp
  • trunk/BNC/.cvsignore

    r83 r142  
    33bnc
    44anlagen
     5qrc_bnc.cpp
    56moc_bnccaster.cpp
    67moc_bncgetthread.cpp
  • trunk/BNC/RTCM/RTCM.cpp

    r141 r142  
    11// -*- C++ -*-
    22// RTCM.C
    3 // $Id: RTCM.cpp,v 1.1.1.1 2006/05/30 11:05:27 mervart Exp $
     3// $Id: RTCM.cpp,v 1.2 2006/09/08 12:07:14 mervart Exp $
    44// 2005/04/11: counter 'iPCode' for indicating CA or P Code on L1 (BKG)
    55
     
    874874#if 1
    875875#ifdef DEBUG
    876         fprintf(stderr, "unknown byte type %d (%d 0x%0x)\n", b >> DATA_SHIFT,
     876        fprintf(stderr, "RTCM 2.x: unknown byte type %d (%d 0x%0x)\n", b >> DATA_SHIFT,
    877877                b, b);
    878878#endif
  • trunk/BNC/bnccaster.cpp

    r141 r142  
    8383  long newTime = obs->GPSWeek * 7*24*3600 + obs->GPSWeeks;
    8484
    85   cout << "newTime " << newTime << endl;
    86 
    8785  // First time, set the _lastDumpSec immediately
    8886  // --------------------------------------------
     
    107105  // Dump older epochs
    108106  // -----------------
    109   cout << "dump " << _lastDumpSec << "  " << newTime - _waitTime << endl;
    110107  dumpEpochs(_lastDumpSec + 1, newTime - _waitTime);
    111108  _lastDumpSec = newTime - _waitTime;
  • trunk/BNC/bncmain.cpp

    r114 r142  
    5454      }
    5555    }
     56   
     57    app.setWindowIcon(QPixmap(":ntrip-logo-grau.bmp"));
    5658
    5759    bncWindow* bncWin = new bncWindow();
  • trunk/BNC/bncwindow.cpp

    r139 r142  
    410410              "Version 1.0");
    411411
    412   QMessageBox::information(this, "About", str, QMessageBox::Ok);
     412  QMessageBox mb("BNC", str,
     413                 QMessageBox::Information,
     414                 QMessageBox::Ok | QMessageBox::Default,
     415                 QMessageBox::NoButton,
     416                 QMessageBox::NoButton);
     417
     418  mb.setIconPixmap(QPixmap(":ntrip-logo-blau.bmp"));
     419
     420  mb.exec();
    413421}
    414422
Note: See TracChangeset for help on using the changeset viewer.