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
898832fa
Kaydet (Commit)
898832fa
authored
Mar 28, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Clean up C-style casts from pointers to void
Change-Id: Ibd23c1d96b093ae2670e7752691dad29c081639f
üst
116b969f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
storcach.cxx
store/source/storcach.cxx
+1
-1
storlckb.cxx
store/source/storlckb.cxx
+2
-2
No files found.
store/source/storcach.cxx
Dosyayı görüntüle @
898832fa
...
...
@@ -329,7 +329,7 @@ PageCache_Impl::~PageCache_Impl()
void
PageCache_Impl
::
rescale_Impl
(
sal_Size
new_size
)
{
sal_Size
new_bytes
=
new_size
*
sizeof
(
Entry
*
);
Entry
**
new_table
=
(
Entry
**
)
(
rtl_allocateMemory
(
new_bytes
));
Entry
**
new_table
=
static_cast
<
Entry
**>
(
rtl_allocateMemory
(
new_bytes
));
if
(
new_table
!=
0
)
{
...
...
store/source/storlckb.cxx
Dosyayı görüntüle @
898832fa
...
...
@@ -152,7 +152,7 @@ storeError OStoreLockBytes::readAt (
// Read data.
OStoreDataPageObject
aData
;
sal_uInt8
*
pData
=
(
sal_uInt8
*
)
pBuffer
;
sal_uInt8
*
pData
=
static_cast
<
sal_uInt8
*>
(
pBuffer
)
;
while
((
0
<
nBytes
)
&&
(
nOffset
<
nDataLen
))
{
// Determine 'Offset' scope.
...
...
@@ -247,7 +247,7 @@ storeError OStoreLockBytes::writeAt (
// Write data.
OStoreDirectoryPageObject
aPage
(
m_xNode
.
get
());
const
sal_uInt8
*
pData
=
(
const
sal_uInt8
*
)
pBuffer
;
const
sal_uInt8
*
pData
=
static_cast
<
const
sal_uInt8
*>
(
pBuffer
)
;
storeError
eErrCode
=
store_E_None
;
while
(
nBytes
>
0
)
...
...
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