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
1d2a140e
Kaydet (Commit)
1d2a140e
authored
Mar 07, 2011
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Move #ifdef DBG_UTIL to #if OSL_DEBUG_LEVEL > 1 for OSL_TRACE
üst
1c1dc47f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
cmdbasestream.cxx
automation/source/server/cmdbasestream.cxx
+4
-4
No files found.
automation/source/server/cmdbasestream.cxx
Dosyayı görüntüle @
1d2a140e
...
...
@@ -162,7 +162,7 @@ void CmdBaseStream::Read (comm_USHORT &nNr)
comm_USHORT
nId
;
*
pCommStream
>>
nId
;
if
(
pCommStream
->
IsEof
())
return
;
#if
def DBG_UTIL
#if
OSL_DEBUG_LEVEL > 1
if
(
nId
!=
BinUSHORT
)
OSL_TRACE
(
"Falscher Typ im Stream: Erwartet USHORT, gefunden :%hu"
,
nId
);
#endif
*
pCommStream
>>
nNr
;
...
...
@@ -173,7 +173,7 @@ void CmdBaseStream::Read (comm_ULONG &nNr)
comm_USHORT
nId
;
*
pCommStream
>>
nId
;
if
(
pCommStream
->
IsEof
())
return
;
#if
def DBG_UTIL
#if
OSL_DEBUG_LEVEL > 1
if
(
nId
!=
BinULONG
)
OSL_TRACE
(
"Falscher Typ im Stream: Erwartet ULONG, gefunden :%hu"
,
nId
);
#endif
*
pCommStream
>>
nNr
;
...
...
@@ -183,7 +183,7 @@ void CmdBaseStream::Read (comm_UniChar* &aString, comm_USHORT &nLenInChars )
{
comm_USHORT
nId
;
*
pCommStream
>>
nId
;
#if
def DBG_UTIL
#if
OSL_DEBUG_LEVEL > 1
if
(
nId
!=
BinString
)
OSL_TRACE
(
"Falscher Typ im Stream: Erwartet String, gefunden :%hu"
,
nId
);
#endif
...
...
@@ -203,7 +203,7 @@ void CmdBaseStream::Read (comm_BOOL &bBool)
{
comm_USHORT
nId
;
*
pCommStream
>>
nId
;
#if
def DBG_UTIL
#if
OSL_DEBUG_LEVEL > 1
if
(
nId
!=
BinBool
)
OSL_TRACE
(
"Falscher Typ im Stream: Erwartet BOOL, gefunden :%hu"
,
nId
);
#endif
*
pCommStream
>>
bBool
;
...
...
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