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
1e088494
Kaydet (Commit)
1e088494
authored
Eyl 15, 2012
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Prefer prefix ++/-- operators for non-primitive type
Change-Id: I0373b40ee404c74ca3c2bd479c5f7b18b7495548
üst
3fad87a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Server.cxx
sd/source/ui/remotecontrol/Server.cxx
+4
-4
No files found.
sd/source/ui/remotecontrol/Server.cxx
Dosyayı görüntüle @
1e088494
...
@@ -171,7 +171,7 @@ void RemoteServer::presentationStarted( const css::uno::Reference<
...
@@ -171,7 +171,7 @@ void RemoteServer::presentationStarted( const css::uno::Reference<
return
;
return
;
MutexGuard
aGuard
(
spServer
->
mDataMutex
);
MutexGuard
aGuard
(
spServer
->
mDataMutex
);
for
(
vector
<
Communicator
*>::
const_iterator
aIt
=
spServer
->
mCommunicators
.
begin
();
for
(
vector
<
Communicator
*>::
const_iterator
aIt
=
spServer
->
mCommunicators
.
begin
();
aIt
<
spServer
->
mCommunicators
.
end
();
aIt
++
)
aIt
!=
spServer
->
mCommunicators
.
end
();
++
aIt
)
{
{
(
*
aIt
)
->
presentationStarted
(
rController
);
(
*
aIt
)
->
presentationStarted
(
rController
);
}
}
...
@@ -182,7 +182,7 @@ void RemoteServer::presentationStopped()
...
@@ -182,7 +182,7 @@ void RemoteServer::presentationStopped()
return
;
return
;
MutexGuard
aGuard
(
spServer
->
mDataMutex
);
MutexGuard
aGuard
(
spServer
->
mDataMutex
);
for
(
vector
<
Communicator
*>::
const_iterator
aIt
=
spServer
->
mCommunicators
.
begin
();
for
(
vector
<
Communicator
*>::
const_iterator
aIt
=
spServer
->
mCommunicators
.
begin
();
aIt
<
spServer
->
mCommunicators
.
end
();
aIt
++
)
aIt
!=
spServer
->
mCommunicators
.
end
();
++
aIt
)
{
{
(
*
aIt
)
->
disposeListener
();
(
*
aIt
)
->
disposeListener
();
}
}
...
@@ -194,7 +194,7 @@ void RemoteServer::removeCommunicator( Communicator* mCommunicator )
...
@@ -194,7 +194,7 @@ void RemoteServer::removeCommunicator( Communicator* mCommunicator )
return
;
return
;
MutexGuard
aGuard
(
spServer
->
mDataMutex
);
MutexGuard
aGuard
(
spServer
->
mDataMutex
);
for
(
vector
<
Communicator
*>::
iterator
aIt
=
spServer
->
mCommunicators
.
begin
();
for
(
vector
<
Communicator
*>::
iterator
aIt
=
spServer
->
mCommunicators
.
begin
();
aIt
<
spServer
->
mCommunicators
.
end
();
aIt
++
)
aIt
!=
spServer
->
mCommunicators
.
end
();
++
aIt
)
{
{
if
(
mCommunicator
==
*
aIt
)
if
(
mCommunicator
==
*
aIt
)
{
{
...
@@ -259,7 +259,7 @@ sal_Bool RemoteServer::connectClient( ClientInfo* pClient, rtl::OUString aPin )
...
@@ -259,7 +259,7 @@ sal_Bool RemoteServer::connectClient( ClientInfo* pClient, rtl::OUString aPin )
spServer
->
mCommunicators
.
push_back
(
pCommunicator
);
spServer
->
mCommunicators
.
push_back
(
pCommunicator
);
for
(
vector
<
ClientInfoInternal
*>::
iterator
aIt
=
spServer
->
mAvailableClients
.
begin
();
for
(
vector
<
ClientInfoInternal
*>::
iterator
aIt
=
spServer
->
mAvailableClients
.
begin
();
aIt
<
spServer
->
mAvailableClients
.
end
();
aIt
++
)
aIt
!=
spServer
->
mAvailableClients
.
end
();
++
aIt
)
{
{
if
(
pClient
==
*
aIt
)
if
(
pClient
==
*
aIt
)
{
{
...
...
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