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
7790b6a4
Kaydet (Commit)
7790b6a4
authored
Haz 26, 2015
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
vcl: convert some BOOLs
Change-Id: I6d6d63a88ef125b12614f1daeab7afbab06c47ca
üst
ea2be4ef
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
salinst.cxx
vcl/win/source/app/salinst.cxx
+9
-9
No files found.
vcl/win/source/app/salinst.cxx
Dosyayı görüntüle @
7790b6a4
...
...
@@ -223,17 +223,17 @@ void ImplSalYieldMutexAcquireWithWait()
if
(
pSalData
->
mnAppThreadId
==
nThreadId
)
{
// wait till we get the Mutex
bool
bAcquire
=
FALSE
;
bool
bAcquire
=
false
;
do
{
if
(
pInst
->
mpSalYieldMutex
->
tryToAcquire
()
)
bAcquire
=
TRUE
;
bAcquire
=
true
;
else
{
pInst
->
mpSalWaitMutex
->
acquire
();
if
(
pInst
->
mpSalYieldMutex
->
tryToAcquire
()
)
{
bAcquire
=
TRUE
;
bAcquire
=
true
;
pInst
->
mpSalWaitMutex
->
release
();
}
else
...
...
@@ -273,7 +273,7 @@ bool ImplSalYieldMutexTryToAcquire()
if
(
pInst
)
return
pInst
->
mpSalYieldMutex
->
tryToAcquire
();
else
return
FALSE
;
return
false
;
}
void
ImplSalYieldMutexRelease
()
...
...
@@ -398,16 +398,16 @@ SalData::SalData()
mnStockBrushCount
=
0
;
// count of static brushes
mnSalObjWantKeyEvt
=
0
;
// KeyEvent for the SalObj hook
mnCacheDCInUse
=
0
;
// count of CacheDC in use
mbObjClassInit
=
FALSE
;
// is SALOBJECTCLASS initialised
mbInPalChange
=
FALSE
;
// is in WM_QUERYNEWPALETTE
mbObjClassInit
=
false
;
// is SALOBJECTCLASS initialised
mbInPalChange
=
false
;
// is in WM_QUERYNEWPALETTE
mnAppThreadId
=
0
;
// Id from Applikation-Thread
mbScrSvrEnabled
=
FALSE
;
// ScreenSaver enabled
mnSageStatus
=
0
;
// status of Sage-DLL (DISABLE_AGENT == not available)
mpSageEnableProc
=
0
;
// funktion to deactivate the system agent
mpFirstIcon
=
0
;
// icon cache, points to first icon, NULL if none
mpTempFontItem
=
0
;
mbThemeChanged
=
FALSE
;
// true if visual theme was changed: throw away theme handles
mbThemeMenuSupport
=
FALSE
;
mbThemeChanged
=
false
;
// true if visual theme was changed: throw away theme handles
mbThemeMenuSupport
=
false
;
// init with NULL
gdiplusToken
=
0
;
...
...
@@ -905,7 +905,7 @@ bool WinSalInstance::AnyInput( VclInputFlags nType )
}
}
return
FALSE
;
return
false
;
}
void
SalTimer
::
Start
(
sal_uLong
nMS
)
...
...
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