]> SALOME platform Git repositories - plugins/hexoticplugin.git/commitdiff
Salome HOME
Merge branch 'V9_4_BR' V9_5_0a1
authorvsr <vsr@opencascade.com>
Fri, 6 Dec 2019 13:44:18 +0000 (16:44 +0300)
committervsr <vsr@opencascade.com>
Fri, 6 Dec 2019 13:44:27 +0000 (16:44 +0300)
CMakeLists.txt
src/GUI/HexoticPluginGUI_HypothesisCreator.cxx
src/GUI/HexoticPluginGUI_HypothesisCreator.h

index 25e95c0eb72f518f443ef0877ee514466aeedf63..54b40b2ead42d1448d36fe48a576158779f88991 100644 (file)
@@ -35,7 +35,7 @@ SET(${PROJECT_NAME_UC}_MINOR_VERSION 4)
 SET(${PROJECT_NAME_UC}_PATCH_VERSION 0)
 SET(${PROJECT_NAME_UC}_VERSION
   ${${PROJECT_NAME_UC}_MAJOR_VERSION}.${${PROJECT_NAME_UC}_MINOR_VERSION}.${${PROJECT_NAME_UC}_PATCH_VERSION})
-SET(${PROJECT_NAME_UC}_VERSION_DEV 0)
+SET(${PROJECT_NAME_UC}_VERSION_DEV 1)
 
 # Common CMake macros
 # ===================
index 83ed5f44d29a8b4d56dbb6cd3f763ee2168a5299..2c6fa073134d8424284a2303ec3926c11130106b 100644 (file)
@@ -384,7 +384,7 @@ void HexoticPluginGUI_HypothesisCreator::onRemoveLocalSize()
 {
   // Remove the selected rows in the table
   QList<QTableWidgetSelectionRange> ranges = mySmpWidget->tableWidget->selectedRanges();
-  if ( ranges.isEmpty() && mySmpWidget->tableWidget->rowCount() > 0 ) // If none is selected remove the last one
+  if ( ranges.isEmpty() && mySmpWidget->tableWidget->rowCount() > 0) // If none is selected remove the last one
   {
     int lastRow = mySmpWidget->tableWidget->rowCount() - 1;
     std::string entry = mySmpWidget->tableWidget->item( lastRow, ENTRY_COL )->text().toStdString();
index be50efdb4c8821a13183422eeabeadc6a316bfcf..5cf0035ab3e1a17a48d646905ef070005d39f505 100644 (file)
@@ -124,7 +124,6 @@ protected slots:
   void             onTabChanged(int);
   void             onAddOption();
   void             onDirBtnClicked();
-
 };
 
 class SizeMapsTableWidgetDelegate : public QItemDelegate