diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-12 21:57:47 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-12 21:57:47 +0100 |
commit | 92234fa05419829744aca6a991413f55da4548e7 (patch) | |
tree | 021d4dd96ebd4e92288c964a0b21dd16e27cd637 /src/css.hh | |
parent | 8897847aa556384d0a0d7bbaccd9241e0f4470d1 (diff) |
String -> ConstString
Diffstat (limited to 'src/css.hh')
-rw-r--r-- | src/css.hh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -273,9 +273,9 @@ class CssRule { */ class CssStyleSheet { private: - class RuleMap : public lout::container::typed::HashTable <lout::object::String, lout::object::Pointer > { + class RuleMap : public lout::container::typed::HashTable <lout::object::ConstString, lout::object::Pointer > { public: - RuleMap () : lout::container::typed::HashTable <lout::object::String, lout::object::Pointer > (true, true, 256) { + RuleMap () : lout::container::typed::HashTable <lout::object::ConstString, lout::object::Pointer > (true, true, 256) { }; }; |