introduce statictext

This commit is contained in:
Henrique Santiago
2011-12-29 15:45:59 -02:00
parent ad82c549b8
commit d67442dc49
13 changed files with 234 additions and 12 deletions

View File

@@ -153,6 +153,8 @@ inline std::istream& operator>>(std::istream& in, Color& color)
color = Fw::darkGray;
} else if(tmp == "lightGray") {
color = Fw::lightGray;
} else if(tmp == "orange") {
color = Fw::orange;
} else {
in.seekg(-tmp.length(), ios_base::cur);
}