diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2007-06-25 12:44:11 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2007-06-25 12:44:11 +0200 |
commit | fc61e314442d22bb7886dba77380497b776fcb62 (patch) | |
tree | b6e891bb760438f2209d5f24ab489d8d01579026 /texteffects.h | |
parent | ae9c6ccad6ba1ab419fe73d9e75f545cbbb62c96 (diff) | |
download | vdr-plugin-skinenigmang-fc61e314442d22bb7886dba77380497b776fcb62.tar.gz vdr-plugin-skinenigmang-fc61e314442d22bb7886dba77380497b776fcb62.tar.bz2 |
2007-06-25: Version 0.0.5rc3v0.0.5rc3
- Updated Finnish translation (Submitted by Rolf Ahrenberg).
- Added quickepgsearch, sport and music plugins in main menu logos (Submitted by zulu @vdr-portal.de).
- Reworked debug() and error().
- Use required width of date for calculation of logo area with.
- Don't let vector for text effects grow when moving through lists in menus.
- Added internal translation of long weeksdays (Requested and translated by Pat @vdr-portal.de).
- Support TrueTypeFonts again with VDR >=v1.5.4 (TTF width setup disabled).
- Read OSD size from VDR's cOsd as suggested in VDR and Avards plugin.
- Minor bugfixes and enhancements.
Diffstat (limited to 'texteffects.h')
-rw-r--r-- | texteffects.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/texteffects.h b/texteffects.h index eb6dd8a..5f1d61d 100644 --- a/texteffects.h +++ b/texteffects.h @@ -89,11 +89,11 @@ private: void Wakeup(void) { -// printf("WAKE1: %p\n", pthread_self()); +// printf("WAKE1: %lu\n", pthread_self()); mutexSleep.Lock(); condSleep.Broadcast(); mutexSleep.Unlock(); -// printf("WAKE2: %p\n", pthread_self()); +// printf("WAKE2: %lu\n", pthread_self()); } #endif //DISABLE_ANIMATED_TEXT @@ -120,16 +120,16 @@ public: void UpdateLock(void) { -// printf("LOCK1: %p\n", pthread_self()); +// printf("LOCK1: %lu\n", pthread_self()); Lock(); -// printf("LOCK2: %p\n", pthread_self()); +// printf("LOCK2: %lu\n", pthread_self()); } void UpdateUnlock(void) { -// printf("UNLOCK1: %p\n", pthread_self()); +// printf("UNLOCK1: %lu\n", pthread_self()); Unlock(); -// printf("UNLOCK2: %p\n", pthread_self()); +// printf("UNLOCK2: %lu\n", pthread_self()); } void RefreshEffects(void) |