]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
untabify
authoreap <eap@opencascade.com>
Wed, 3 Feb 2010 07:16:22 +0000 (07:16 +0000)
committereap <eap@opencascade.com>
Wed, 3 Feb 2010 07:16:22 +0000 (07:16 +0000)
src/LightApp/LightApp_Application.cxx
src/SalomeApp/SalomeApp_Application.cxx

index 119329bf041cedcd1315be521dbc4339b81e2023..3a6d053b26096cc57a4ea8d68700bb9dfd719f89 100644 (file)
@@ -563,7 +563,7 @@ void LightApp_Application::createActions()
       QString modName = moduleName( *it );
 
       if ( !isModuleAccessible( *it ) )
-       continue;
+        continue;
 
       QString iconName;
       if ( iconMap.contains( *it ) )
@@ -574,9 +574,9 @@ void LightApp_Application::createActions()
       {
         icon = modIcon;
         INFOS ( "****************************************************************" << std::endl
-               <<  "*    Icon for " << (*it).toLatin1().constData() 
-               << " not found. Using the default one." << std::endl
-               << "****************************************************************" << std::endl );
+                <<  "*    Icon for " << (*it).toLatin1().constData() 
+                << " not found. Using the default one." << std::endl
+                << "****************************************************************" << std::endl );
       }
 
       icon = Qtx::scaleIcon( icon, iconSize );
@@ -585,7 +585,7 @@ void LightApp_Application::createActions()
     }
 
     connect( moduleAction, SIGNAL( moduleActivated( const QString& ) ), 
-            this, SLOT( onModuleActivation( const QString& ) ) );
+             this, SLOT( onModuleActivation( const QString& ) ) );
     registerAction( ModulesListId, moduleAction );
   }
 
@@ -2530,9 +2530,9 @@ void LightApp_Application::updateModuleActions()
     if ( !isModuleAccessible( modName ) ) {
       QList<SUIT_Application*> apps = SUIT_Session::session()->applications();
       foreach( SUIT_Application* app, apps ) {
-       LightApp_Application* lapp = dynamic_cast<LightApp_Application*>( app );
-       if ( lapp && lapp != this )
-         lapp->removeModuleAction( modName );
+        LightApp_Application* lapp = dynamic_cast<LightApp_Application*>( app );
+        if ( lapp && lapp != this )
+          lapp->removeModuleAction( modName );
       }
     }
   }
index b17c2a5349bcc8fed1c9d7fca69e5f23def944a9..41896b0b848bc6e54782420bc568b516b7027aa1 100644 (file)
@@ -1193,18 +1193,18 @@ void SalomeApp_Application::contextMenuPopup( const QString& type, QMenu* thePop
     if ( study ) {
       _PTR(Study) stdDS = study->studyDS();
       if ( stdDS ) { 
-       _PTR(SObject) aSO = stdDS->FindObjectID( aIObj->getEntry() );
-       if ( aSO ) {
-         _PTR( GenericAttribute ) anAttr;
-         std::string auid = "AttributeUserID";
-         auid += Kernel_Utils::GetGUID(Kernel_Utils::ObjectdID);
-         if ( aSO->FindAttribute( anAttr, auid ) ) {
-           _PTR(AttributeUserID) aAttrID = anAttr;
-           QString aId = aAttrID->Value().c_str();
-           if ( myExtActions.contains( aId ) ) {
-             thePopup->addAction(myExtActions[aId]);
-           }
-         }
+        _PTR(SObject) aSO = stdDS->FindObjectID( aIObj->getEntry() );
+        if ( aSO ) {
+          _PTR( GenericAttribute ) anAttr;
+          std::string auid = "AttributeUserID";
+          auid += Kernel_Utils::GetGUID(Kernel_Utils::ObjectdID);
+          if ( aSO->FindAttribute( anAttr, auid ) ) {
+            _PTR(AttributeUserID) aAttrID = anAttr;
+            QString aId = aAttrID->Value().c_str();
+            if ( myExtActions.contains( aId ) ) {
+              thePopup->addAction(myExtActions[aId]);
+            }
+          }
         }
       }
     }