aboutsummaryrefslogtreecommitdiff
path: root/src/css.hh
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-01-12 21:57:47 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-01-12 21:57:47 +0100
commit92234fa05419829744aca6a991413f55da4548e7 (patch)
tree021d4dd96ebd4e92288c964a0b21dd16e27cd637 /src/css.hh
parent8897847aa556384d0a0d7bbaccd9241e0f4470d1 (diff)
String -> ConstString
Diffstat (limited to 'src/css.hh')
-rw-r--r--src/css.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/css.hh b/src/css.hh
index e4e7f3de..333b8b3d 100644
--- a/src/css.hh
+++ b/src/css.hh
@@ -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) {
};
};