diff options
author | Max Horn | 2008-06-11 06:00:56 +0000 |
---|---|---|
committer | Max Horn | 2008-06-11 06:00:56 +0000 |
commit | fefad792495e0fbd45d120a83b19090e3b7a0cf3 (patch) | |
tree | 46ac6184d0bac1cbd2488a3ea1c5d665b3f0ac3d /graphics/fontman.h | |
parent | 41ee9025ca1b88bdb5410dd87dfe8c90aadb8731 (diff) | |
download | scummvm-rg350-fefad792495e0fbd45d120a83b19090e3b7a0cf3.tar.gz scummvm-rg350-fefad792495e0fbd45d120a83b19090e3b7a0cf3.tar.bz2 scummvm-rg350-fefad792495e0fbd45d120a83b19090e3b7a0cf3.zip |
No need to specify CaseSensitiveString_Hash explicitly anymore
svn-id: r32663
Diffstat (limited to 'graphics/fontman.h')
-rw-r--r-- | graphics/fontman.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/fontman.h b/graphics/fontman.h index eeefab77ec..7121c314cd 100644 --- a/graphics/fontman.h +++ b/graphics/fontman.h @@ -84,7 +84,7 @@ private: friend class Common::Singleton<SingletonBaseType>; FontManager(); - Common::HashMap<Common::String, const Font *, Common::CaseSensitiveString_Hash, Common::CaseSensitiveString_EqualTo> _fontMap; + Common::HashMap<Common::String, const Font *> _fontMap; }; |