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
ad5daefd
Kaydet (Commit)
ad5daefd
authored
May 11, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:cstylecast: nop between pointer types of exactly same spelling
Change-Id: Ic4b6409013a19a78025973b26318ef05611a6984
üst
2244ba7b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
poly.cxx
tools/source/generic/poly.cxx
+1
-1
resmgr.cxx
tools/source/rc/resmgr.cxx
+1
-1
stream.cxx
tools/source/stream/stream.cxx
+4
-4
No files found.
tools/source/generic/poly.cxx
Dosyayı görüntüle @
ad5daefd
...
...
@@ -584,7 +584,7 @@ Polygon::~Polygon()
const
Point
*
Polygon
::
GetConstPointAry
()
const
{
return
(
Point
*
)
mpImplPolygon
->
mpPointAry
;
return
mpImplPolygon
->
mpPointAry
;
}
const
sal_uInt8
*
Polygon
::
GetConstFlagAry
()
const
...
...
tools/source/rc/resmgr.cxx
Dosyayı görüntüle @
ad5daefd
...
...
@@ -597,7 +597,7 @@ void* InternalResMgr::LoadGlobalRes( RESOURCE_TYPE nRT, sal_uInt32 nId,
pStm
->
Read
(
pStringBlock
,
nSize
);
}
*
pResHandle
=
pStringBlock
;
return
(
sal_uInt8
*
)
pStringBlock
+
pFind
->
nOffset
-
nOffCorrection
;
return
pStringBlock
+
pFind
->
nOffset
-
nOffCorrection
;
}
// if( nRT == RSC_STRING && bEqual2Content )
else
{
...
...
tools/source/stream/stream.cxx
Dosyayı görüntüle @
ad5daefd
...
...
@@ -577,7 +577,7 @@ bool SvStream::ReadLine( OString& rStr, sal_Int32 nMaxBytesToRead )
if
(
bEnd
&&
(
c
==
'\r'
||
c
==
'\n'
)
)
// Special treatment for DOS files
{
char
cTemp
;
sal_Size
nLen
=
Read
(
(
char
*
)
&
cTemp
,
sizeof
(
cTemp
)
);
sal_Size
nLen
=
Read
(
&
cTemp
,
sizeof
(
cTemp
)
);
if
(
nLen
)
{
if
(
cTemp
==
c
||
(
cTemp
!=
'\n'
&&
cTemp
!=
'\r'
)
)
Seek
(
nOldFilePos
);
...
...
@@ -984,7 +984,7 @@ SvStream& SvStream::ReadChar( char& r )
nBufFree
-=
sizeof
(
char
);
}
else
Read
(
(
char
*
)
&
r
,
sizeof
(
char
)
);
Read
(
&
r
,
sizeof
(
char
)
);
return
*
this
;
}
...
...
@@ -1154,7 +1154,7 @@ SvStream& SvStream::WriteChar( char v )
bIsDirty
=
true
;
}
else
Write
(
(
char
*
)
&
v
,
sizeof
(
char
)
);
Write
(
&
v
,
sizeof
(
char
)
);
return
*
this
;
}
...
...
@@ -1724,7 +1724,7 @@ SvMemoryStream::~SvMemoryStream()
const
void
*
SvMemoryStream
::
GetBuffer
()
{
Flush
();
return
(
const
void
*
)
GetData
();
return
GetData
();
}
sal_uIntPtr
SvMemoryStream
::
GetSize
()
...
...
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