diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-06-03 22:18:54 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-06-03 22:18:54 +0000 |
commit | cd260aabdb23fd97d9cb8b0105e61d90ca844f01 (patch) | |
tree | dac9b3f1a903dac9510974f443e0b376d27e6252 /filecache.h | |
parent | 41687a7bbe9c8d304b805a9a5f7e14101f1d75a5 (diff) | |
download | vdr-plugin-live-cd260aabdb23fd97d9cb8b0105e61d90ca844f01.tar.gz vdr-plugin-live-cd260aabdb23fd97d9cb8b0105e61d90ca844f01.tar.bz2 |
- general CSS based themeing support.
- added setup option to select theme.
- added search scheme for themable images and stylesheets.
- added marine (default) and redwine theme.
- documented new features. All developers must read
doc/dev-conventions.txt
Diffstat (limited to 'filecache.h')
-rw-r--r-- | filecache.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/filecache.h b/filecache.h index 5c1e83d..eaf9739 100644 --- a/filecache.h +++ b/filecache.h @@ -42,11 +42,11 @@ public: ptr_type get( key_type const& key ) { cMutexLock lock( &m_mutex ); - dsyslog( "vdrlive::FileCache::get( %s )", key.c_str() ); - dsyslog( "vdrlive::FileCache had %u entries (weight: %u)", count(), weight() ); + // dsyslog( "vdrlive::FileCache::get( %s )", key.c_str() ); + // dsyslog( "vdrlive::FileCache had %u entries (weight: %u)", count(), weight() ); ptr_type result = base_type::get( key ); - dsyslog( "vdrlive::FileCache now has %u entries (weight: %u)", count(), weight() ); - dsyslog( "vdrlive::FileCache::get( %s ) = %p", key.c_str(), result.get() ); + // dsyslog( "vdrlive::FileCache now has %u entries (weight: %u)", count(), weight() ); + // dsyslog( "vdrlive::FileCache::get( %s ) = %p", key.c_str(), result.get() ); return result; } |