diff options
| author | louis <louis.braun@gmx.de> | 2015-03-31 05:34:41 +0200 |
|---|---|---|
| committer | louis <louis.braun@gmx.de> | 2015-03-31 05:34:41 +0200 |
| commit | 1ba2ae905ad33f8e311100fd4e9e48653ca4b63d (patch) | |
| tree | 202919e0fbe52bc5e44567bdfd193a66da4e3ef7 /libtemplate/templateloopfunction.h | |
| parent | 10e551d7604d4e3c871f74174fdd535fb9c8e61a (diff) | |
| download | vdr-plugin-skindesigner-1ba2ae905ad33f8e311100fd4e9e48653ca4b63d.tar.gz vdr-plugin-skindesigner-1ba2ae905ad33f8e311100fd4e9e48653ca4b63d.tar.bz2 | |
fixed bug also for loops
Diffstat (limited to 'libtemplate/templateloopfunction.h')
| -rw-r--r-- | libtemplate/templateloopfunction.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libtemplate/templateloopfunction.h b/libtemplate/templateloopfunction.h index 5335279..599dfcb 100644 --- a/libtemplate/templateloopfunction.h +++ b/libtemplate/templateloopfunction.h @@ -11,8 +11,8 @@ class cTemplateLoopFunction : public cTemplateFunction { private: vector<cTemplateFunction*> functions; vector<cTemplateFunction*>::iterator funcIt; - void ReplaceWidthFunctions(void); - void ReplaceHeightFunctions(void); + bool ReplaceWidthFunctions(void); + bool ReplaceHeightFunctions(void); public: cTemplateLoopFunction(void); virtual ~cTemplateLoopFunction(void); |
