summaryrefslogtreecommitdiff
path: root/tubes/source/contacts.cxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2012-08-07 23:34:19 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2012-08-08 10:04:20 +0200
commitc3c2dcf80de012b620de8563d7e872c3ae556881 (patch)
treed85f4b62fa10b0db479c720a37b8ca7ccdc01b44 /tubes/source/contacts.cxx
parent1fa1894ec4ac7dd2ba314716d5565f3dac87592a (diff)
tubes: do not encode UUID into file name anymore
Change-Id: I6c3828eb9c2f2d1810822e90006fc1af4bfcf277
Diffstat (limited to 'tubes/source/contacts.cxx')
-rw-r--r--tubes/source/contacts.cxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/tubes/source/contacts.cxx b/tubes/source/contacts.cxx
index ef772dee58db..1472773f1ec2 100644
--- a/tubes/source/contacts.cxx
+++ b/tubes/source/contacts.cxx
@@ -88,8 +88,7 @@ class TubeContacts : public ModelessDialog
{
TpContact* pContact = pAC->second;
mpCollaboration->GetConference()->invite( pContact );
- mpCollaboration->SaveAndSendFile( pContact, OStringToOUString(
- mpCollaboration->GetConference()->getUuid(), RTL_TEXTENCODING_UTF8 ) );
+ mpCollaboration->SaveAndSendFile( pContact );
}
}
}
@@ -108,8 +107,7 @@ class TubeContacts : public ModelessDialog
else
{
mpCollaboration->StartCollaboration( pConference );
- mpCollaboration->SaveAndSendFile( NULL, OStringToOUString(
- pConference->getUuid(), RTL_TEXTENCODING_UTF8 ) );
+ mpCollaboration->SaveAndSendFile( NULL );
}
}
@@ -130,8 +128,7 @@ class TubeContacts : public ModelessDialog
else
{
mpCollaboration->StartCollaboration( pConference );
- mpCollaboration->SaveAndSendFile( pContact, OStringToOUString(
- pConference->getUuid(), RTL_TEXTENCODING_UTF8 ) );
+ mpCollaboration->SaveAndSendFile( pContact );
}
}
}