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
59d5d634
Kaydet (Commit)
59d5d634
authored
Ock 15, 2018
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More loplugin:cstylecast: sal
Change-Id: I1ca982dc8c35c7a2762572d7bb47066ead8e6c89
üst
83922317
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
conditn.hxx
include/osl/conditn.hxx
+1
-1
file.hxx
include/osl/file.hxx
+1
-1
socket.cxx
sal/osl/unx/socket.cxx
+4
-4
No files found.
include/osl/conditn.hxx
Dosyayı görüntüle @
59d5d634
...
...
@@ -116,7 +116,7 @@ namespace osl
*/
Result
wait
(
const
TimeValue
*
pTimeout
=
NULL
)
{
return
(
Result
)
osl_waitCondition
(
condition
,
pTimeout
);
return
static_cast
<
Result
>
(
osl_waitCondition
(
condition
,
pTimeout
)
);
}
#if defined LIBO_INTERNAL_ONLY
...
...
include/osl/file.hxx
Dosyayı görüntüle @
59d5d634
...
...
@@ -1755,7 +1755,7 @@ public:
osl_releaseDirectoryItem
(
rItem
.
_pData
);
rItem
.
_pData
=
NULL
;
}
return
(
RC
)
osl_getNextDirectoryItem
(
_pData
,
&
rItem
.
_pData
,
nHint
);
return
static_cast
<
RC
>
(
osl_getNextDirectoryItem
(
_pData
,
&
rItem
.
_pData
,
nHint
)
);
}
...
...
sal/osl/unx/socket.cxx
Dosyayı görüntüle @
59d5d634
...
...
@@ -95,13 +95,13 @@ static const unsigned long FamilyMap[]= {
static
oslAddrFamily
osl_AddrFamilyFromNative
(
sal_uInt32
nativeType
)
{
oslAddrFamily
i
=
(
oslAddrFamily
)
0
;
oslAddrFamily
i
=
oslAddrFamily
(
0
)
;
while
(
i
!=
osl_Socket_FamilyInvalid
)
{
if
(
FamilyMap
[
i
]
==
nativeType
)
return
i
;
i
=
(
oslAddrFamily
)
(
i
+
1
);
i
=
static_cast
<
oslAddrFamily
>
(
i
+
1
);
}
return
i
;
...
...
@@ -131,13 +131,13 @@ static const sal_uInt32 TypeMap[]= {
static
oslSocketType
osl_SocketTypeFromNative
(
sal_uInt32
nativeType
)
{
oslSocketType
i
=
(
oslSocketType
)
0
;
oslSocketType
i
=
oslSocketType
(
0
)
;
while
(
i
!=
osl_Socket_TypeInvalid
)
{
if
(
TypeMap
[
i
]
==
nativeType
)
return
i
;
i
=
(
oslSocketType
)
(
i
+
1
);
i
=
static_cast
<
oslSocketType
>
(
i
+
1
);
}
return
i
;
...
...
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