X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPlugins%2FMEDReader%2FParaViewPlugin%2FVectBoolSpreadSheet.cxx;h=286fe5dc9cff124c6c38ea0c2a90b4d21e56b6f3;hb=4cde1a359421d29a442b21c452e7b89bba8f96b7;hp=27b61cac0cf2f98e319993f9f48dad5eeebed1d9;hpb=ab03dc1c10db590a94536495b779ab762f5690d6;p=modules%2Fparavis.git diff --git a/src/Plugins/MEDReader/ParaViewPlugin/VectBoolSpreadSheet.cxx b/src/Plugins/MEDReader/ParaViewPlugin/VectBoolSpreadSheet.cxx index 27b61cac..286fe5dc 100644 --- a/src/Plugins/MEDReader/ParaViewPlugin/VectBoolSpreadSheet.cxx +++ b/src/Plugins/MEDReader/ParaViewPlugin/VectBoolSpreadSheet.cxx @@ -1,9 +1,9 @@ -// Copyright (C) 2010-2014 CEA/DEN, EDF R&D +// Copyright (C) 2010-2015 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either -// version 2.1 of the License. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -217,8 +217,13 @@ void VectBoolSpreadSheet::init() this->verticalHeader()->setMinimumSectionSize(2); this->verticalHeader()->setDefaultSectionSize(2); this->setItemDelegate(_delegate); +#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) this->verticalHeader()->setResizeMode(QHeaderView::ResizeToContents); this->horizontalHeader()->setResizeMode(QHeaderView::ResizeToContents); +#else + this->verticalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents); + this->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents); +#endif this->resizeColumnsToContents(); this->resizeRowsToContents(); //this->verticalHeader()->hide(); @@ -233,6 +238,7 @@ void VectBoolSpreadSheet::selectionChanged(const QItemSelection & selected, cons m->setData(ind,QVariant(true),Qt::UserRole); } QTableView::selectionChanged(selected,deselected); + this->clearSelection(); } void VectBoolSpreadSheet::nbOfRowsHasChanged(int newNbOfRows)