aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/FbTk/LuaUtil.cc9
-rw-r--r--src/FbTk/LuaUtil.hh1
2 files changed, 10 insertions, 0 deletions
diff --git a/src/FbTk/LuaUtil.cc b/src/FbTk/LuaUtil.cc
index 700ef1a..01744bf 100644
--- a/src/FbTk/LuaUtil.cc
+++ b/src/FbTk/LuaUtil.cc
@@ -115,4 +115,13 @@ void Lua::readOnlySet(int index) {
115 pop(); 115 pop();
116} 116}
117 117
118void Lua::readOnlySetField(int index, const char *k) {
119 checkstack(1);
120 index = absindex(index);
121
122 pushstring(k);
123 insert(-2);
124 readOnlySet(index);
125}
126
118} // namespace FbTk 127} // namespace FbTk
diff --git a/src/FbTk/LuaUtil.hh b/src/FbTk/LuaUtil.hh
index d013ed9..0b33040 100644
--- a/src/FbTk/LuaUtil.hh
+++ b/src/FbTk/LuaUtil.hh
@@ -52,6 +52,7 @@ public:
52 * It can be used to modify protected entries or create new ones. 52 * It can be used to modify protected entries or create new ones.
53 */ 53 */
54 void readOnlySet(int index); 54 void readOnlySet(int index);
55 void readOnlySetField(int index, const char *k);
55 56
56 template<typename Functor> 57 template<typename Functor>
57 static void registerInitFunction(const Functor &fn) { 58 static void registerInitFunction(const Functor &fn) {