]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
This commit was generated by cvs2git to create tag 'V4_1_0a3'. V4_1_0a3
authoradmin <salome-admin@opencascade.com>
Fri, 2 Nov 2007 08:54:01 +0000 (08:54 +0000)
committeradmin <salome-admin@opencascade.com>
Fri, 2 Nov 2007 08:54:01 +0000 (08:54 +0000)
Sprout from BR_Dev_For_4_0 2007-11-02 08:54:00 UTC srn <srn@opencascade.com> 'Fixed bug in method FindChild'
Cherrypick from BR_Dev_For_4_0 2007-11-01 12:49:56 UTC jfa <jfa@opencascade.com> 'Fix pb. with loading of last module (in list).':
    src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx

src/ModuleCatalog/SALOME_ModuleCatalog_impl.cxx

index f4cfd079716ce8484d445762fe8b486e4a7b1a61..63d117230ac942e3cc00facc168fe3d228ba1f4e 100644 (file)
@@ -132,6 +132,7 @@ SALOME_ModuleCatalogImpl::SALOME_ModuleCatalogImpl(int argc, char** argv, CORBA:
     // Affect the _general_module_list and _general_path_list members
     // with the common catalog
 
+    cout << "$$$ _general_path = " << _general_path << endl;
     list<string> dirList;
 
 #ifdef WNT
@@ -151,6 +152,7 @@ SALOME_ModuleCatalogImpl::SALOME_ModuleCatalogImpl(int argc, char** argv, CORBA:
     for (list<string>::iterator iter = dirList.begin(); iter != dirList.end(); iter++)
     {
       string aPath = (*iter);
+      cout << "$$$ aPath = " << aPath.c_str() << endl;
       //remove inverted commas from filename
       while (aPath.find('\"') != string::npos)
        aPath.erase(aPath.find('\"'), 1);
@@ -160,6 +162,11 @@ SALOME_ModuleCatalogImpl::SALOME_ModuleCatalogImpl(int argc, char** argv, CORBA:
                      _general_path_list);
     }
 
+    for (unsigned int ind = 0; ind < _general_module_list.size(); ind++) {
+      cout << "$$$  = _general_module_list[" << ind << "] = "
+           << _general_module_list[ind].name.c_str() << endl;
+    }
+
     // Verification of _general_path_list content
     if (!_verify_path_prefix(_general_path_list)) {
       if(MYDEBUG) MESSAGE( "Error while parsing the general path list, "