From 241f1947580df7f905ed3d6969cc3a6a4bb99f5a Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 30 Sep 2009 14:56:33 +0200 Subject: ConnectionManager: Forgot to get the daemon list from the ConfigManager --- src/Common/HostInfo.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Common') diff --git a/src/Common/HostInfo.h b/src/Common/HostInfo.h index bd4afba..f70322c 100644 --- a/src/Common/HostInfo.h +++ b/src/Common/HostInfo.h @@ -35,7 +35,7 @@ class HostInfo { private: Core::String name; - std::string ip; + Core::String ip; State state; @@ -45,8 +45,8 @@ class HostInfo { void setName(const Core::String &newName) {name = newName;} const Core::String& getName() const {return name;} - void setIP(const std::string& newIp) {ip = newIp;} - const std::string& getIP() const {return ip;} + void setIP(const Core::String& newIp) {ip = newIp;} + const Core::String& getIP() const {return ip;} void setState(State newState) {state = newState;} State getState() const {return state;} -- cgit v1.2.3