Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
3ef03fbf
Kaydet (Commit)
3ef03fbf
authored
Agu 03, 2012
tarafından
Matúš Kukan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
tubes: make TeleManager::getConference() static
Change-Id: Ic7023a40eb2f09802b100d9317c0a6a66d901476
üst
51802df7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
sendfunc.cxx
sc/source/ui/collab/sendfunc.cxx
+1
-3
manager.hxx
tubes/inc/tubes/manager.hxx
+1
-1
manager.cxx
tubes/source/manager.cxx
+1
-1
No files found.
sc/source/ui/collab/sendfunc.cxx
Dosyayı görüntüle @
3ef03fbf
...
@@ -356,9 +356,7 @@ ScDocFunc *ScDocShell::CreateDocFunc()
...
@@ -356,9 +356,7 @@ ScDocFunc *ScDocShell::CreateDocFunc()
ScDocFuncDirect
*
pDirect
=
new
ScDocFuncDirect
(
*
this
);
ScDocFuncDirect
*
pDirect
=
new
ScDocFuncDirect
(
*
this
);
ScDocFuncRecv
*
pReceiver
=
new
ScDocFuncRecv
(
pDirect
);
ScDocFuncRecv
*
pReceiver
=
new
ScDocFuncRecv
(
pDirect
);
ScDocFuncSend
*
pSender
=
new
ScDocFuncSend
(
*
this
,
pReceiver
);
ScDocFuncSend
*
pSender
=
new
ScDocFuncSend
(
*
this
,
pReceiver
);
TeleManager
*
pManager
=
new
TeleManager
();
pSender
->
SetCollaboration
(
TeleManager
::
getConference
()
);
pSender
->
SetCollaboration
(
pManager
->
getConference
()
);
delete
pManager
;
return
pSender
;
return
pSender
;
}
}
else
else
...
...
tubes/inc/tubes/manager.hxx
Dosyayı görüntüle @
3ef03fbf
...
@@ -123,7 +123,7 @@ public:
...
@@ -123,7 +123,7 @@ public:
TUBES_DLLPUBLIC
TeleConference
*
startBuddySession
(
TpAccount
*
pAccount
,
TpContact
*
pBuddy
);
TUBES_DLLPUBLIC
TeleConference
*
startBuddySession
(
TpAccount
*
pAccount
,
TpContact
*
pBuddy
);
/** Get a conference with current UUID to set a session. */
/** Get a conference with current UUID to set a session. */
TUBES_DLLPUBLIC
TeleConference
*
getConference
();
TUBES_DLLPUBLIC
static
TeleConference
*
getConference
();
/** True if there has been tube channel received and is still not used. */
/** True if there has been tube channel received and is still not used. */
TUBES_DLLPUBLIC
static
bool
hasWaitingConference
();
TUBES_DLLPUBLIC
static
bool
hasWaitingConference
();
...
...
tubes/source/manager.cxx
Dosyayı görüntüle @
3ef03fbf
...
@@ -165,7 +165,7 @@ void TeleManager::addConference( TeleConference* pConference )
...
@@ -165,7 +165,7 @@ void TeleManager::addConference( TeleConference* pConference )
TeleConference
*
TeleManager
::
getConference
()
TeleConference
*
TeleManager
::
getConference
()
{
{
TeleManagerImpl
::
MapStringConference
::
iterator
it
=
TeleManagerImpl
::
MapStringConference
::
const_
iterator
it
=
pImpl
->
maAcceptedConferences
.
find
(
pImpl
->
msCurrentUUID
);
pImpl
->
maAcceptedConferences
.
find
(
pImpl
->
msCurrentUUID
);
TeleConference
*
pConference
=
NULL
;
TeleConference
*
pConference
=
NULL
;
if
(
it
!=
pImpl
->
maAcceptedConferences
.
end
())
if
(
it
!=
pImpl
->
maAcceptedConferences
.
end
())
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment