summaryrefslogtreecommitdiffstats
path: root/sigencore/Client.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-02-06 00:31:45 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-02-06 00:31:45 -0500
commit68817e9709abcdaf4f365e4836215c5d5a38085a (patch)
tree08efc55a0130a162a00f1737dac61d229cafc258 /sigencore/Client.cpp
parent918fe93139a497645d43b9e390ca2948f340ad20 (diff)
downloadsigen-68817e9709abcdaf4f365e4836215c5d5a38085a.tar.gz
sigen-68817e9709abcdaf4f365e4836215c5d5a38085a.tar.xz
sigen-68817e9709abcdaf4f365e4836215c5d5a38085a.zip
Fix base Cleint class implementation for arena handling
Diffstat (limited to 'sigencore/Client.cpp')
-rw-r--r--sigencore/Client.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/sigencore/Client.cpp b/sigencore/Client.cpp
index 715863a0..625e2674 100644
--- a/sigencore/Client.cpp
+++ b/sigencore/Client.cpp
@@ -27,11 +27,13 @@ Sigencore::Client::~Client()
{
}
-void Sigencore::Client::enterArena(Arena* arena)
+bool Sigencore::Client::enterArena(Arena* arena)
{
- Q_UNUSED(arena)
+ m_arena = arena;
+ return true;
}
void Sigencore::Client::exitArena()
{
+ m_arena = NULL;
}