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
5e70740d
Kaydet (Commit)
5e70740d
authored
Nis 28, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
DbgIs* return types want to be bool
Change-Id: I86587025d397d2d84f9aed1e204ae21056829a1c
üst
832f4c4b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
debug.hxx
include/tools/debug.hxx
+6
-6
No files found.
include/tools/debug.hxx
Dosyayı görüntüle @
5e70740d
...
...
@@ -69,31 +69,31 @@ inline void DbgSaveData( const DbgData& rData )
DbgFunc
(
DBG_FUNC_SAVEDATA
,
(
void
*
)
&
rData
);
}
inline
sal_uIntPtr
DbgIsResource
()
inline
bool
DbgIsResource
()
{
DbgData
*
pData
=
DbgGetData
();
if
(
pData
)
return
pData
->
nTestFlags
&
DBG_TEST_RESOURCE
;
else
return
sal_F
alse
;
return
f
alse
;
}
inline
sal_uIntPtr
DbgIsDialog
()
inline
bool
DbgIsDialog
()
{
DbgData
*
pData
=
DbgGetData
();
if
(
pData
)
return
pData
->
nTestFlags
&
DBG_TEST_DIALOG
;
else
return
sal_F
alse
;
return
f
alse
;
}
inline
sal_uIntPtr
DbgIsBoldAppFont
()
inline
bool
DbgIsBoldAppFont
()
{
DbgData
*
pData
=
DbgGetData
();
if
(
pData
)
return
pData
->
nTestFlags
&
DBG_TEST_BOLDAPPFONT
;
else
return
sal_F
alse
;
return
f
alse
;
}
inline
void
DbgSetTestSolarMutex
(
DbgTestSolarMutexProc
pProc
)
...
...
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