]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
NRI : Check if a component-username is already associated with a component-name.
authornri <nri@opencascade.com>
Wed, 28 May 2003 08:55:22 +0000 (08:55 +0000)
committernri <nri@opencascade.com>
Wed, 28 May 2003 08:55:22 +0000 (08:55 +0000)
src/SALOMEGUI/QAD_Desktop.cxx

index 049b5882d8ca40c38ca456be6a0831e956b029fb..1f1120c3f0dcceb0f35f14a04becac521324993d 100644 (file)
@@ -253,6 +253,10 @@ myQueryClose( true )
     MESSAGE ( " MODULE icon = " << iconfile )
     MESSAGE ( " MODULE username = " << moduleusername )
 
+    if ( mapComponentName.contains( moduleusername ) ) {
+      QMessageBox::warning( this, tr("WRN_WARNING"), QString( moduleusername + " is already associated with " + mapComponentName[moduleusername] + ".\nPlease, change the component username of " + modulename) , tr ("BUT_OK") );
+      continue;
+    }
     mapComponentName.insert( moduleusername, modulename );
       
     resDir = resMgr->findFile(iconfile,modulename) ;