diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-09-29 17:24:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-09-29 17:59:57 +0300 |
commit | f315432679f760b71505e74dcb2185b7aef7a906 (patch) | |
tree | 07d45620464a2542cb28fbe773f652501e6ee6fb /src/properties.h | |
parent | cccb3e11663eb415b9b6c9a184e1c17762a2d989 (diff) | |
download | plus-f315432679f760b71505e74dcb2185b7aef7a906.tar.gz plus-f315432679f760b71505e74dcb2185b7aef7a906.tar.bz2 plus-f315432679f760b71505e74dcb2185b7aef7a906.tar.xz plus-f315432679f760b71505e74dcb2185b7aef7a906.zip |
change smaller letter literalt into capital letter.
Diffstat (limited to 'src/properties.h')
-rw-r--r-- | src/properties.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/properties.h b/src/properties.h index d6d2eb01b..fab5304c7 100644 --- a/src/properties.h +++ b/src/properties.h @@ -66,12 +66,12 @@ class Properties * Gets a map property as a float. * * @param name The name of the property. - * @param def Default value, 0.0f by default. + * @param def Default value, 0.0F by default. * @return the value of the given property or the given default when it * doesn't exist. */ float getFloatProperty(const std::string &name, - const float def = 0.0f) const A_WARN_UNUSED + const float def = 0.0F) const A_WARN_UNUSED { const PropertyMap::const_iterator i = mProperties.find(name); float ret = def; |