Salome HOME
Using files from package LightApp instead of files from package SalomeApp
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Dialog.cxx
index 1e1df649ca0cfa9a3b89ee5ae19f7e75c51df25c..a3277e0a756be3d53c2fa808ead7e4b2f3e23f0e 100644 (file)
@@ -37,7 +37,7 @@
 //=================================================================================
 SMESHGUI_Dialog::SMESHGUI_Dialog( QWidget* parent, const bool modal,
                                   const bool allowResize, const int flags )
-: SalomeApp_Dialog( parent == 0 ? desktop() : parent, "", modal, allowResize, flags )
+: LightApp_Dialog( parent == 0 ? desktop() : parent, "", modal, allowResize, flags )
 {
   int pr = prefix( "SMESH" );
   typeName( pr + MESH ) = tr( "DLG_MESH" );
@@ -66,7 +66,7 @@ void SMESHGUI_Dialog::show()
   int x = abs( PP->x() + PP->size().width() - size().width() - 10 ),
       y = abs( PP->y() + PP->size().height() - size().height() - 10 );
   move(x, y);
-  SalomeApp_Dialog::show();
+  LightApp_Dialog::show();
 }
 
 //=================================================================================