Salome HOME
Dump Image data to python script (Feature #13).
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_InputPanel.cxx
index 78b42edef35c5004797f2c05f61b1244e41b48e7..5857decfd8efd5b27317b8119518f25620e92d9a 100644 (file)
@@ -97,6 +97,12 @@ void HYDROGUI_InputPanel::addWidget( QWidget* theWidget )
   aMainLayout->addWidget( theWidget );
 }
 
+void HYDROGUI_InputPanel::addLayout( QLayout* theLayout )
+{
+  QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
+  aMainLayout->addLayout( theLayout );
+}
+
 void HYDROGUI_InputPanel::addStretch()
 {
   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );