]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Fixed some bugs
authorsrn <srn@opencascade.com>
Mon, 6 Feb 2006 12:06:51 +0000 (12:06 +0000)
committersrn <srn@opencascade.com>
Mon, 6 Feb 2006 12:06:51 +0000 (12:06 +0000)
src/SALOMEDS/SALOMEDS_IParameters.cxx
src/SALOMEDS/SALOMEDS_IParameters.hxx

index 8b1dcafcd13c56a764176390415d3061e0ab53c6..89cb3f6c47ea98d9ac113cf181e5732c209129e9 100644 (file)
@@ -160,6 +160,7 @@ int SALOMEDS_IParameters::getNbParameters(const string& entry)
 vector<string> SALOMEDS_IParameters::getEntries()
 {
   vector<string> v;
+  if(!_ap) return v;
   if(!_ap->IsSet(_AP_ENTRIES_LIST_, PT_STRARRAY)) return v;
   return _ap->GetStrArray(_AP_ENTRIES_LIST_);
 }
@@ -183,6 +184,7 @@ string SALOMEDS_IParameters::getProperty(const string& name)
 vector<string> SALOMEDS_IParameters::getProperties()
 {
   vector<string> v;
+  if(!_ap) return v;
   if(!_ap->IsSet(_AP_PROPERTIES_LIST_, PT_STRARRAY)) return v;
   return _ap->GetStrArray(_AP_PROPERTIES_LIST_);
 }
index e3096bcc6c8389e6af4322a97bc35c3077748473..17c678dbc2f94979bb02b2c684245295db3f3a7a 100644 (file)
@@ -105,7 +105,7 @@ public:
   std::vector<std::string> getProperties();
 
   /*!
-    Breaks a value string in two parts which is divided %separator.
+    Breaks a value string in two parts which is divided by %separator.
     If fromEnd is True the search of separator starts from the end of the string
    */
   std::vector<std::string> parseValue(const std::string& value, const char separator, bool fromEnd = true);