- Timestamp:
- Nov 12, 2009, 7:57:29 AM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncfigure.cpp
r1932 r1933 49 49 //////////////////////////////////////////////////////////////////////////// 50 50 bncFigure::bncFigure(QWidget *parent) : QWidget(parent) { 51 updateMountPoints(); 52 slotNextAnimationFrame(); 53 } 54 55 // Destructor 56 //////////////////////////////////////////////////////////////////////////// 57 bncFigure::~bncFigure() { 58 } 59 60 // 61 //////////////////////////////////////////////////////////////////////////// 62 void bncFigure::updateMountPoints() { 63 QMutexLocker locker(&_mutex); 64 65 _counter = 0; 66 67 QMapIterator<QByteArray, sumAndMean*> it1(_bytes); 68 while (it1.hasNext()) { 69 it1.next(); 70 delete it1.value(); 71 } 72 _bytes.clear(); 73 51 74 bncSettings settings; 52 75 QListIterator<QString> it(settings.value("mountPoints").toStringList()); … … 57 80 _bytes[staID] = new sumAndMean(); 58 81 } 59 _counter = 0;60 slotNextAnimationFrame();61 }62 63 // Destructor64 ////////////////////////////////////////////////////////////////////////////65 bncFigure::~bncFigure() {66 82 } 67 83 -
trunk/BNC/bncfigure.h
r1932 r1933 33 33 bncFigure(QWidget *parent); 34 34 ~bncFigure(); 35 void updateMountPoints(); 35 36 public slots: 36 37 void slotNewData(const QByteArray staID, double nbyte); -
trunk/BNC/bncwindow.cpp
r1932 r1933 1116 1116 } 1117 1117 1118 _bncFigure->updateMountPoints(); 1118 1119 _caster->slotReadMountPoints(); 1119 1120 }
Note:
See TracChangeset
for help on using the changeset viewer.