Changeset 363 in pacpusframework


Ignore:
Timestamp:
12/14/15 12:07:12 (9 years ago)
Author:
DHERBOMEZ Gérald
Message:
  • stopping component in reverse sense in PacpusSensor app
  • upgrade PATCH_VERSION number from 2 to 3. (0.2.2->0.2.3)
Location:
branches/0.2.x
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/0.2.x/CMakeLists.txt

    r357 r363  
    2323set(${PROJECT_NAME}_MAJOR_VERSION 0)
    2424set(${PROJECT_NAME}_MINOR_VERSION 2)
    25 set(${PROJECT_NAME}_PATCH_VERSION 2)
     25set(${PROJECT_NAME}_PATCH_VERSION 3)
    2626set(${PROJECT_NAME}_VERSION
    2727    "${${PROJECT_NAME}_MAJOR_VERSION}.${${PROJECT_NAME}_MINOR_VERSION}.${${PROJECT_NAME}_PATCH_VERSION}")
  • branches/0.2.x/include/Pacpus/structures/genericStructures.h

    r362 r363  
    22#define GENERIC_STRUCTURES_H
    33
    4 #include <Pacpus/PacpusTools/pacpusStruct.h>
     4#include <Pacpus/structures/pacpusStruct.h>
    55#include <QVariant>
    66#include <QVector>
  • branches/0.2.x/src/PacpusSensor/src/ui/pacpusmainwindow.cpp

    r340 r363  
    7878void PacpusMainWindow::stopAcquisition()
    7979{
    80     for (int i = 0; i < componentGroup_->buttons().size(); ++i) {
     80    for (int i = componentGroup_->buttons().size() - 1 ; i >=0 ; --i) {
    8181        componentGroup_->buttons().at(i)->setChecked(false);
    8282    }
Note: See TracChangeset for help on using the changeset viewer.