diff options
author | Andrei Karas <akaras@inbox.ru> | 2010-03-08 17:45:40 +0200 |
---|---|---|
committer | Bertram <yohanndotferreiraatorange.fr> | 2010-03-08 17:12:38 +0100 |
commit | 9951bf6c1c2e3966f92f1545b60a9e23a1f32565 (patch) | |
tree | e3f9fbcb3ff252390a1af4137ddfd8694b8c77e4 /src/properties.h | |
parent | 71cefdb345652342a3eaf84f197586809128e6ab (diff) | |
download | mana-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.h | 2 |
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); |