Changeset 363 in pacpusframework
- Timestamp:
- Dec 14, 2015, 12:07:12 PM (9 years ago)
- Location:
- branches/0.2.x
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.2.x/CMakeLists.txt
r357 r363 23 23 set(${PROJECT_NAME}_MAJOR_VERSION 0) 24 24 set(${PROJECT_NAME}_MINOR_VERSION 2) 25 set(${PROJECT_NAME}_PATCH_VERSION 2)25 set(${PROJECT_NAME}_PATCH_VERSION 3) 26 26 set(${PROJECT_NAME}_VERSION 27 27 "${${PROJECT_NAME}_MAJOR_VERSION}.${${PROJECT_NAME}_MINOR_VERSION}.${${PROJECT_NAME}_PATCH_VERSION}") -
branches/0.2.x/include/Pacpus/structures/genericStructures.h
r362 r363 2 2 #define GENERIC_STRUCTURES_H 3 3 4 #include <Pacpus/ PacpusTools/pacpusStruct.h>4 #include <Pacpus/structures/pacpusStruct.h> 5 5 #include <QVariant> 6 6 #include <QVector> -
branches/0.2.x/src/PacpusSensor/src/ui/pacpusmainwindow.cpp
r340 r363 78 78 void PacpusMainWindow::stopAcquisition() 79 79 { 80 for (int i = 0; i < componentGroup_->buttons().size(); ++i) {80 for (int i = componentGroup_->buttons().size() - 1 ; i >=0 ; --i) { 81 81 componentGroup_->buttons().at(i)->setChecked(false); 82 82 }
Note:
See TracChangeset
for help on using the changeset viewer.