diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/configuration.cpp | 17 |
2 files changed, 4 insertions, 14 deletions
@@ -1,5 +1,6 @@ 2005-08-26 Björn Steinbrink <B.Steinbrink@gmx.de> + * src/configuration.cpp: Remove dependency on math.h. * src/openglgraphics.cpp: Remove useless code. * src/openglgraphics.cpp: Use glTranslatef instead of glTranslated. Remove some useless code. diff --git a/src/configuration.cpp b/src/configuration.cpp index 0b43418f..f961c084 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -24,7 +24,6 @@ #include "configuration.h" -#include <math.h> #include <sstream> #include <libxml/xmlwriter.h> @@ -136,30 +135,20 @@ void Configuration::setValue(const std::string &key, std::string value) void Configuration::setValue(const std::string &key, float value) { std::stringstream ss; - if (value == floor(value)) { - ss << (int)value; - } else { - ss << value; - } + ss << ((value == (int)value) ? (int)value : value); setValue(key, ss.str()); } std::string Configuration::getValue(const std::string &key, std::string deflt) { std::map<std::string, std::string>::iterator iter = options.find(key); - if (iter != options.end()) { - return (*iter).second; - } - return deflt; + return ((iter != options.end()) ? (*iter).second : deflt); } float Configuration::getValue(const std::string &key, float deflt) { std::map<std::string, std::string>::iterator iter = options.find(key); - if (iter != options.end()) { - return atof((*iter).second.c_str()); - } - return deflt; + return (iter != options.end()) ? atof((*iter).second.c_str()) : deflt; } void Configuration::addListener( |