diff options
author | Michael Meeks <michael.meeks@suse.com> | 2012-03-23 17:54:06 +0000 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2012-07-17 16:39:59 +0200 |
commit | 114542a8b2d48b85721ba5699c5951810473f507 (patch) | |
tree | f62f906c73de63b5e3e88edfa0e0d04b3c5e8cca /tubes | |
parent | dcca79f6e74ea8b2347bbd87a85c04f2b6cb7646 (diff) |
tubes: make the contacts list show something
Diffstat (limited to 'tubes')
-rw-r--r-- | tubes/inc/tubes/manager.hxx | 2 | ||||
-rw-r--r-- | tubes/source/manager.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tubes/inc/tubes/manager.hxx b/tubes/inc/tubes/manager.hxx index 7c877f5fc786..ec85d9134506 100644 --- a/tubes/inc/tubes/manager.hxx +++ b/tubes/inc/tubes/manager.hxx @@ -96,7 +96,7 @@ public: /** Fetches the contact list. Returns 0 before connect() is called successfully. Is non-functional until prepareAccountManager(). */ - ContactList* getContactList(); + ContactList* getContactList() const; #if 0 /** Start a group session in a MUC. diff --git a/tubes/source/manager.cxx b/tubes/source/manager.cxx index 3128ea2898d6..b9f9744c2f0f 100644 --- a/tubes/source/manager.cxx +++ b/tubes/source/manager.cxx @@ -683,7 +683,7 @@ bool TeleManager::isAccountManagerReadyHandlerInvoked() const return pImpl->mbAccountManagerReadyHandlerInvoked; } -ContactList* TeleManager::getContactList() +ContactList* TeleManager::getContactList() const { return pImpl->mpContactList; } |