X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FStdMeshersGUI%2FStdMeshersGUI_ObjectReferenceParamWdg.cxx;h=70abfea101ef17fd7fc419087a450a72a62d1ac3;hb=8297100f3672d89ff864961311a8738eb46d980d;hp=9e5768402b62d3a3b6a735ac28e558dc8f7f0113;hpb=63a442b2c3cbc5e2155d83e86dfdb77d6961fab3;p=modules%2Fsmesh.git diff --git a/src/StdMeshersGUI/StdMeshersGUI_ObjectReferenceParamWdg.cxx b/src/StdMeshersGUI/StdMeshersGUI_ObjectReferenceParamWdg.cxx index 9e5768402..70abfea10 100644 --- a/src/StdMeshersGUI/StdMeshersGUI_ObjectReferenceParamWdg.cxx +++ b/src/StdMeshersGUI/StdMeshersGUI_ObjectReferenceParamWdg.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -35,7 +35,6 @@ #include #include #include -#include // SALOME KERNEL incldues #include @@ -56,11 +55,12 @@ //================================================================================ StdMeshersGUI_ObjectReferenceParamWdg::StdMeshersGUI_ObjectReferenceParamWdg -( SUIT_SelectionFilter* f, QWidget* parent, bool multiSelection, bool stretch ) +( SUIT_SelectionFilter* f, QWidget* parent, bool multiSelection + /*, bool stretch */) : QWidget( parent ), myMultiSelection( multiSelection ) { myFilter = f; - myStretchActivated = stretch; + // myStretchActivated = stretch; init(); } @@ -124,12 +124,13 @@ void StdMeshersGUI_ObjectReferenceParamWdg::init() myObjNameLineEdit = new QLineEdit(this); myObjNameLineEdit->setReadOnly(true); myObjNameLineEdit->setStyleSheet(myEmptyStyleSheet); + myObjNameLineEdit->setMinimumWidth(150); aHBox->addWidget( mySelButton ); aHBox->addWidget( myObjNameLineEdit ); - if (myStretchActivated){ - aHBox->addStretch(); - } + //if (myStretchActivated){ + // aHBox->addStretch(); + //} connect( mySelButton, SIGNAL(clicked()), SLOT(activateSelection())); }