summaryrefslogtreecommitdiff
path: root/src/properties.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2010-03-08 17:45:40 +0200
committerBertram <yohanndotferreiraatorange.fr>2010-03-08 17:12:38 +0100
commit9951bf6c1c2e3966f92f1545b60a9e23a1f32565 (patch)
treee3f9fbcb3ff252390a1af4137ddfd8694b8c77e4 /src/properties.h
parent71cefdb345652342a3eaf84f197586809128e6ab (diff)
downloadMana-9951bf6c1c2e3966f92f1545b60a9e23a1f32565.tar.gz
Mana-9951bf6c1c2e3966f92f1545b60a9e23a1f32565.tar.bz2
Mana-9951bf6c1c2e3966f92f1545b60a9e23a1f32565.tar.xz
Mana-9951bf6c1c2e3966f92f1545b60a9e23a1f32565.zip
Fix properties bug.
Fix Random crushes and valgrind memory errors. Reviewed-by: thorbjorn
Diffstat (limited to 'src/properties.h')
-rw-r--r--src/properties.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/properties.h b/src/properties.h
index 18eafc6b..1320b0c9 100644
--- a/src/properties.h
+++ b/src/properties.h
@@ -45,7 +45,7 @@ class Properties
* @return the value of the given property or the given default when it
* doesn't exist.
*/
- const std::string &getProperty(const std::string &name,
+ const std::string getProperty(const std::string &name,
const std::string &def = "") const
{
PropertyMap::const_iterator i = mProperties.find(name);