]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Bug IPAL19350 : Qt4 porting: Cut Lines: incorrect table generation
authorouv <ouv@opencascade.com>
Tue, 25 Mar 2008 11:50:28 +0000 (11:50 +0000)
committerouv <ouv@opencascade.com>
Tue, 25 Mar 2008 11:50:28 +0000 (11:50 +0000)
src/GUITOOLS/VisuGUI_TableDlg.cxx

index 802644bd02cb954bd89626938a3e6aa6b7bb7a9d..45d883422a97867aa1e54a1db2f4d532fdd89bb9 100644 (file)
@@ -722,6 +722,10 @@ void VisuGUI_TableWidget::getRowTitles( QStringList& tlts )
 void VisuGUI_TableWidget::setColTitles( QStringList& tlts )
 {
   QStringList aLabels;
+
+  // !!! first column contains units !!!
+  aLabels.append(""); // it'll be initialized below - in setUnitsTitle() method
+
   for ( int i = 0; i < tlts.count(); i++ )
     tlts[i].isNull() ? aLabels.append("") : aLabels.append( tlts[i] );