diff options
author | Gábor Stefanik <netrolller.3d@gmail.com> | 2012-04-28 05:31:17 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-04-30 12:21:45 +0100 |
commit | 1a33c664d7f7a0662b861fbafe3b93a2656bb768 (patch) | |
tree | 1bd41024c80f54807c28499dec10359d0f8fd1e7 /vcl/inc | |
parent | dba0aed4ca39b2b40c6609ff336384dcc75c6914 (diff) |
fdo#42779: Implement icon theme lookaside directory
Change-Id: Ib6f7e3b4f750e38198c09cdb4bd8ee2b7161ac53
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/impimagetree.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/vcl/inc/impimagetree.hxx b/vcl/inc/impimagetree.hxx index 41c4f565ef22..857bff0452e6 100644 --- a/vcl/inc/impimagetree.hxx +++ b/vcl/inc/impimagetree.hxx @@ -78,7 +78,7 @@ private: std::pair< rtl::OUString, com::sun::star::uno::Reference< - com::sun::star::container::XNameAccess > > > Zips; + com::sun::star::container::XNameAccess > > > Paths; typedef boost::unordered_map< rtl::OUString, bool, rtl::OUStringHash > CheckStyleCache; @@ -86,13 +86,14 @@ private: rtl::OUString, std::pair< bool, BitmapEx >, rtl::OUStringHash > IconCache; rtl::OUString m_style; - Zips m_zips; + Paths m_paths; CheckStyleCache m_checkStyleCache; IconCache m_iconCache; + bool m_cacheIcons; void setStyle(rtl::OUString const & style ); - void resetZips(); + void resetPaths(); bool checkStyleCacheLookup( rtl::OUString const & style, bool &exists ); bool iconCacheLookup( rtl::OUString const & name, bool localized, BitmapEx & bitmap ); |