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
1bfdea75
Kaydet (Commit)
1bfdea75
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: Ie42bd7a48391615ea8f48b24d6bfe2bbebb31a0b
üst
18804c92
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
urlparameter.cxx
xmlhelp/source/cxxhelp/provider/urlparameter.cxx
+4
-4
No files found.
xmlhelp/source/cxxhelp/provider/urlparameter.cxx
Dosyayı görüntüle @
1bfdea75
...
...
@@ -783,7 +783,7 @@ helpOpen(const char * URI) {
static
int
helpRead
(
void
*
context
,
char
*
buffer
,
int
len
)
{
Reference
<
XInputStream
>
*
pRef
=
(
Reference
<
XInputStream
>*
)
context
;
Reference
<
XInputStream
>
*
pRef
=
static_cast
<
Reference
<
XInputStream
>*>
(
context
)
;
Sequence
<
sal_Int8
>
aSeq
;
len
=
(
*
pRef
)
->
readBytes
(
aSeq
,
len
);
...
...
@@ -800,7 +800,7 @@ zipRead(void * context, char * buffer, int len) {
static
int
fileRead
(
void
*
context
,
char
*
buffer
,
int
len
)
{
int
nRead
=
0
;
osl
::
File
*
pFile
=
(
osl
::
File
*
)
context
;
osl
::
File
*
pFile
=
static_cast
<
osl
::
File
*>
(
context
)
;
if
(
pFile
)
{
sal_uInt64
uRead
=
0
;
...
...
@@ -812,14 +812,14 @@ fileRead(void * context, char * buffer, int len) {
static
int
uriClose
(
void
*
context
)
{
Reference
<
XInputStream
>
*
pRef
=
(
Reference
<
XInputStream
>*
)
context
;
Reference
<
XInputStream
>
*
pRef
=
static_cast
<
Reference
<
XInputStream
>*>
(
context
)
;
delete
pRef
;
return
0
;
}
static
int
fileClose
(
void
*
context
)
{
osl
::
File
*
pFile
=
(
osl
::
File
*
)
context
;
osl
::
File
*
pFile
=
static_cast
<
osl
::
File
*>
(
context
)
;
if
(
pFile
)
{
pFile
->
close
();
...
...
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