diff options
-rw-r--r-- | sc/source/ui/collab/collab.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/source/ui/collab/collab.cxx b/sc/source/ui/collab/collab.cxx index fdb1a304b96e..4c11fb7aaf5d 100644 --- a/sc/source/ui/collab/collab.cxx +++ b/sc/source/ui/collab/collab.cxx @@ -83,12 +83,15 @@ bool ScCollaboration::initAccountContact() { ContactList* pContactList = mpManager->getContactList(); AccountContactPairV aVec( pContactList->getContacts()); + + fprintf( stderr, "%u contacts\n", (int) aVec.size() ); if (aVec.empty()) return false; /* TODO: select a pair, for now just take the first */ mpAccount = aVec[0].first; mpContact = aVec[0].second; + fprintf( stderr, "picked %s\n", tp_contact_get_identifier( mpContact ) ); return true; } |