From 7c995c8f062b1e4faf919c7c1e8ef8090b3bf180 Mon Sep 17 00:00:00 2001 From: Naffanya Date: Thu, 10 Oct 2013 22:28:22 +0300 Subject: [PATCH] Correction method GetPropertyValue --- include/stg/user_property.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stg/user_property.h b/include/stg/user_property.h index f53b416d..a4547398 100644 --- a/include/stg/user_property.h +++ b/include/stg/user_property.h @@ -391,7 +391,7 @@ std::string USER_PROPERTIES::GetPropertyValue(const std::string & name) const std::map::iterator it = properties.find(name); if (it == properties.end()) return ""; -return it->second.ToString(); +return it->second->ToString(); } //------------------------------------------------------------------------- //------------------------------------------------------------------------- -- 2.43.2