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
a0461078
Kaydet (Commit)
a0461078
authored
Haz 08, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:cstylecast: deal with remaining pointer casts
Change-Id: I5060e9560f394f872c2338409813dd41f20a2fff
üst
801b9823
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
LotusWordProImportFilter.cxx
lotuswordpro/source/filter/LotusWordProImportFilter.cxx
+2
-2
No files found.
lotuswordpro/source/filter/LotusWordProImportFilter.cxx
Dosyayı görüntüle @
a0461078
...
...
@@ -147,7 +147,7 @@ OUString SAL_CALL LotusWordProImportFilter::detect( com::sun::star::uno::Sequenc
Sequence
<
::
sal_Int8
>
aData
;
sal_Int32
nLen
=
SAL_N_ELEMENTS
(
header
);
if
(
!
(
(
nLen
==
xInputStream
->
readBytes
(
aData
,
nLen
)
)
&&
(
memcmp
(
(
void
*
)
header
,
(
void
*
)
aData
.
getConstArray
(
),
nLen
)
==
0
)
)
)
&&
(
memcmp
(
static_cast
<
void
const
*>
(
header
),
static_cast
<
void
const
*>
(
aData
.
getConstArray
()
),
nLen
)
==
0
)
)
)
sTypeName
.
clear
();
return
sTypeName
;
...
...
@@ -193,7 +193,7 @@ Sequence< OUString > SAL_CALL LotusWordProImportFilter_getSupportedServiceNames(
uno
::
Reference
<
XInterface
>
SAL_CALL
LotusWordProImportFilter_createInstance
(
const
uno
::
Reference
<
XMultiServiceFactory
>
&
rSMgr
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
LotusWordProImportFilter
(
comphelper
::
getComponentContext
(
rSMgr
)
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
LotusWordProImportFilter
(
comphelper
::
getComponentContext
(
rSMgr
)
)
);
}
// XServiceInfo
...
...
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