Salome HOME
untabify
authoreap <eap@opencascade.com>
Wed, 30 Sep 2009 08:44:38 +0000 (08:44 +0000)
committereap <eap@opencascade.com>
Wed, 30 Sep 2009 08:44:38 +0000 (08:44 +0000)
src/SMESHGUI/SMESHGUI_Dialog.h
src/SMESHGUI/SMESHGUI_MakeNodeAtPointDlg.cxx
src/SMESHGUI/SMESHGUI_SelectionOp.cxx
src/SMESHGUI/SMESHGUI_SpinBox.h

index 7da64f71ee55f1f57991d6121361a8dca0cc6967..33f930148fdc829448bef8d47f0f1a200a1899f4 100644 (file)
@@ -45,7 +45,7 @@ class SMESHGUI_EXPORT SMESHGUI_Dialog : public LightApp_Dialog
   
 public:
   SMESHGUI_Dialog( QWidget* = 0, const bool = false, const bool = false, 
-                  const int = OK | Close | Apply | Help );
+                   const int = OK | Close | Apply | Help );
   virtual ~SMESHGUI_Dialog();
 
   virtual void      show();
index a2c4f176324fad3c23d189cddd9fa76c4e28128f..ae769c301a1f3751f07da2e509974af69008eaa7 100644 (file)
@@ -367,7 +367,7 @@ bool SMESHGUI_MakeNodeAtPointOp::onApply()
 
   if ( !myMeshActor ) {
     SUIT_MessageBox::warning( dlg(), tr( "SMESH_WRN_WARNING" ),
-                             tr("INVALID_MESH") );
+                              tr("INVALID_MESH") );
     dlg()->show();
     return false;
   }
@@ -376,7 +376,7 @@ bool SMESHGUI_MakeNodeAtPointOp::onApply()
   if ( !isValid( msg ) ) { // node id is invalid
     if( !msg.isEmpty() )
       SUIT_MessageBox::warning( dlg(), tr( "SMESH_WRN_WARNING" ),
-                               tr("INVALID_ID") );
+                                tr("INVALID_ID") );
     dlg()->show();
     return false;
   }
@@ -386,7 +386,7 @@ bool SMESHGUI_MakeNodeAtPointOp::onApply()
     SMESH::SMESH_Mesh_var aMesh = SMESH::GetMeshByIO(myMeshActor->getIO());
     if (aMesh->_is_nil()) {
       SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_ERROR"),
-                                  tr("SMESHG_NO_MESH") );
+                                   tr("SMESHG_NO_MESH") );
       return true;
     }
     SMESH::SMESH_MeshEditor_var aMeshEditor = aMesh->GetMeshEditor();
index 1cb2fc21363612b403fc894b370c47aac196fe55..30ca05205881e756b12c18ef9002f431ccba67d6 100644 (file)
@@ -423,9 +423,9 @@ void SMESHGUI_SelectionOp::selected( QStringList& names,
       SalomeApp_Study* _study = dynamic_cast<SalomeApp_Study*>( study() );
       if( _study )
       {
-       _PTR(SObject) obj = _study->studyDS()->FindObjectID( anIt.Value()->getEntry() );
-       if( obj )
-         names.append( obj->GetName().c_str() );
+        _PTR(SObject) obj = _study->studyDS()->FindObjectID( anIt.Value()->getEntry() );
+        if( obj )
+          names.append( obj->GetName().c_str() );
       }
     }
   }
index cdca31653eaf8b2cf4f5e24f3b6157ad878e5a98..aa757ee632c5bd0313cbb8538c1bd9b32b890745 100644 (file)
@@ -52,9 +52,9 @@ public:
   ~SMESHGUI_SpinBox();
 
   void       RangeStepAndValidator( double         = -1000000.0,
-                                   double         = +1000000.0,
-                                   double         = 100.0,
-                                   unsigned short = 3 );
+                                    double         = +1000000.0,
+                                    double         = 100.0,
+                                    unsigned short = 3 );
   void              SetValue( double );
   double            GetValue() const;
   QString           GetString() const;