diff options
author | louis <louis.braun@gmx.de> | 2014-12-03 18:12:37 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-12-03 18:12:37 +0100 |
commit | 7ce445025e10bf4eb0c4066907e588039c09f1ad (patch) | |
tree | 0a554b47d2db26909eb4628b70427cb40b8493b1 /libtemplate/templatefunction.c | |
parent | def1b3cc301398875b43fc52e50ed936302f56c6 (diff) | |
download | vdr-plugin-skindesigner-7ce445025e10bf4eb0c4066907e588039c09f1ad.tar.gz vdr-plugin-skindesigner-7ce445025e10bf4eb0c4066907e588039c09f1ad.tar.bz2 |
drawing ellipses antialiased with Cairo
Diffstat (limited to 'libtemplate/templatefunction.c')
-rw-r--r-- | libtemplate/templatefunction.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libtemplate/templatefunction.c b/libtemplate/templatefunction.c index 8465961..1ddf297 100644 --- a/libtemplate/templatefunction.c +++ b/libtemplate/templatefunction.c @@ -6,7 +6,10 @@ using namespace std; // --- cTemplateFunction -------------------------------------------------------------
-cTemplateFunction::cTemplateFunction(eFuncType type) {
+int cTemplateFunction::nextId = 0;
+
+cTemplateFunction::cTemplateFunction(eFuncType type) {
+ id = nextId++;
this->type = type;
debug = false;
containerX = 0;
|