Console: Fix stupid scoping bug
g0dil [Tue, 3 Jun 2008 15:22:56 +0000 (15:22 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@866 270642c3-0616-0410-b53a-bc976706d245

Console/Server.cc

index d990bb3..dc169fa 100644 (file)
@@ -94,7 +94,7 @@ prefix_ senf::console::Server & senf::console::Server::start(ServerHandle handle
 }
 
 prefix_ senf::console::Server::Server(ServerHandle handle)
-    : handle_ (handle), root_ (root().thisptr()), mode_ (Automatic)
+    : handle_ (handle), root_ (senf::console::root().thisptr()), mode_ (Automatic)
 {
     Scheduler::instance().add( handle_, senf::membind(&Server::newClient, this) );
 }