summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--xml/object.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index dde864f..49534bf 100644
--- a/HISTORY
+++ b/HISTORY
@@ -104,6 +104,7 @@ ____-__-__: Version 1.3
skins (closes #158)
- Fixed segmentation fault with token ChannelSource (closes #159 - thanks to
a.g.prosat at tochka.ru for reporting this)
+- Fixed spelling of refresh attribute: "allways" -> "always"
2009-06-01: Version 1.2
diff --git a/xml/object.c b/xml/object.c
index 421c00d..c8406f7 100644
--- a/xml/object.c
+++ b/xml/object.c
@@ -340,7 +340,7 @@ bool cxRefresh::Parse(const std::string &Text)
if (Text.find("scroll") != std::string::npos)
refresh |= (1<<scroll);
- if (Text.find("allways") != std::string::npos)
+ if (Text.find("always") != std::string::npos)
refresh |= 0xFF;
if (Text.find("full") != std::string::npos)