diff options
| author | louis <louis.braun@gmx.de> | 2015-03-30 18:05:53 +0200 |
|---|---|---|
| committer | louis <louis.braun@gmx.de> | 2015-03-30 18:05:53 +0200 |
| commit | 10e551d7604d4e3c871f74174fdd535fb9c8e61a (patch) | |
| tree | 0ffe2e9afc2f97fdc4c275bcbfcf3a468365c5a3 /libtemplate/templatepixmap.h | |
| parent | 335f57f0d38a4403c5e3948a8ca79de9b391381a (diff) | |
| download | vdr-plugin-skindesigner-10e551d7604d4e3c871f74174fdd535fb9c8e61a.tar.gz vdr-plugin-skindesigner-10e551d7604d4e3c871f74174fdd535fb9c8e61a.tar.bz2 | |
fixed bug that parameters with both dynamic tokens and relative width, height, posx or posy values are not parsed correctly
Diffstat (limited to 'libtemplate/templatepixmap.h')
| -rw-r--r-- | libtemplate/templatepixmap.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libtemplate/templatepixmap.h b/libtemplate/templatepixmap.h index a5d8f83..3be1816 100644 --- a/libtemplate/templatepixmap.h +++ b/libtemplate/templatepixmap.h @@ -31,11 +31,11 @@ protected: int containerHeight; cGlobals *globals; //functions replacing {width(label)} and {height(label)} tokens - void ReplaceWidthFunctions(void); - void ReplaceHeightFunctions(void); + bool ReplaceWidthFunctions(void); + bool ReplaceHeightFunctions(void); //functions replacing {posx(label)} and {posy(label)} tokens - void ReplacePosXFunctions(void); - void ReplacePosYFunctions(void); + bool ReplacePosXFunctions(void); + bool ReplacePosYFunctions(void); //Get Scrolling Function cTemplateFunction *GetScrollFunction(void); public: |
