summaryrefslogtreecommitdiff
path: root/src/script.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/script.hpp')
-rw-r--r--src/script.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/script.hpp b/src/script.hpp
index 77f75df..029047d 100644
--- a/src/script.hpp
+++ b/src/script.hpp
@@ -10,15 +10,15 @@
*/
class TexoExporterString: public TexoExporter {
public:
- TexoExporterString(ScriptVariable &str);
+ TexoExporterString(ScriptVariable & str);
bool Put(char c);
- bool Put(const ScriptVariable &addon);
+ bool Put(const ScriptVariable & addon);
private:
- ScriptVariable &str;
+ ScriptVariable & str;
};