mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-28 18:30:35 +05:00
Bug IPAL19348 : Qt4 porting: Error message is shown after pressing of ?Filter? button in ?Modification of orientation? dialog box
This commit is contained in:
parent
56817348cf
commit
b0e217d88a
@ -1595,12 +1595,14 @@ SMESHGUI_FilterTable::Table* SMESHGUI_FilterTable::createTable (QWidget* thePar
|
|||||||
QString aCoStr;
|
QString aCoStr;
|
||||||
aCoStr.fill(' ', 10);
|
aCoStr.fill(' ', 10);
|
||||||
|
|
||||||
aTable->horizontalHeaderItem(0)->setText(tr("CRITERION") + aCrStr);
|
QStringList aHeaderLabels;
|
||||||
aTable->horizontalHeaderItem(1)->setText(tr("COMPARE") + aCoStr);
|
aHeaderLabels.append( tr("CRITERION") + aCrStr );
|
||||||
aTable->horizontalHeaderItem(2)->setText(tr("THRESHOLD_VALUE"));
|
aHeaderLabels.append( tr("COMPARE") + aCoStr );
|
||||||
aTable->horizontalHeaderItem(3)->setText(tr("UNARY"));
|
aHeaderLabels.append( tr("THRESHOLD_VALUE") );
|
||||||
aTable->horizontalHeaderItem(4)->setText(tr("BINARY") + " ");
|
aHeaderLabels.append( tr("UNARY") );
|
||||||
aTable->horizontalHeaderItem(5)->setText(tr("ID"));
|
aHeaderLabels.append( tr("BINARY") + " " );
|
||||||
|
aHeaderLabels.append( tr("ID") );
|
||||||
|
aTable->setHorizontalHeaderLabels( aHeaderLabels );
|
||||||
|
|
||||||
// set geometry of the table
|
// set geometry of the table
|
||||||
for (int i = 0; i <= 4; i++)
|
for (int i = 0; i <= 4; i++)
|
||||||
|
Loading…
Reference in New Issue
Block a user