summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-09-28 15:58:49 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-09-28 15:58:49 -0500
commit1e3ae0860615eae002173295f845219a1d451e57 (patch)
treec2dc60877e8118f3a5c0f9860ecbb67ce7935ed8
parentcc2788364dd9c6a14d94646f09222f4721740a15 (diff)
downloadkoffice-1e3ae0860615eae002173295f845219a1d451e57.tar.gz
koffice-1e3ae0860615eae002173295f845219a1d451e57.zip
Fix FTBFS
-rw-r--r--lib/kross/ruby/rubyinterpreter.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/kross/ruby/rubyinterpreter.cpp b/lib/kross/ruby/rubyinterpreter.cpp
index e2c4022a..8617d5ff 100644
--- a/lib/kross/ruby/rubyinterpreter.cpp
+++ b/lib/kross/ruby/rubyinterpreter.cpp
@@ -68,7 +68,9 @@ class RubyInterpreterPrivate {
friend class RubyInterpreter;
static VALUE s_krossModule;
};
-
+
+VALUE RubyInterpreterPrivate::s_krossModule = 0;
+
RubyInterpreterPrivate* RubyInterpreter::d = 0;
RubyInterpreter::RubyInterpreter(Kross::Api::InterpreterInfo* info): Kross::Api::Interpreter(info)