diff options
Diffstat (limited to 'server/src/template.h')
-rw-r--r-- | server/src/template.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/template.h b/server/src/template.h index f19746a..d047712 100644 --- a/server/src/template.h +++ b/server/src/template.h @@ -36,7 +36,7 @@ public: std::map< std::string, std::string > attributes; }; -class LUAProgram { +class Script { public: std::map< std::string, std::string > attributes; }; @@ -55,7 +55,7 @@ class Macro { public: std::vector< Query > queries; std::vector< Map > maps; - std::vector< LUAProgram > luaprograms; + std::vector< Script > scripts; Widget window; std::map< std::string, std::string > attributes; }; |