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
c96f4e56
Kaydet (Commit)
c96f4e56
authored
Mar 31, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Reduce to static_cast any reinterpret_cast from void pointers
Change-Id: Ica7659b636d1277716153ef39025cf539b355fb2
üst
03b2b852
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
detreg.cxx
starmath/source/detreg.cxx
+1
-1
dialog.cxx
starmath/source/dialog.cxx
+1
-1
register.cxx
starmath/source/register.cxx
+1
-1
No files found.
starmath/source/detreg.cxx
Dosyayı görüntüle @
c96f4e56
...
...
@@ -44,7 +44,7 @@ SAL_DLLPUBLIC_EXPORT void* SAL_CALL smd_component_getFactory( const sal_Char* pI
{
// Define variables which are used in following macros.
Reference
<
XSingleServiceFactory
>
xFactory
;
Reference
<
XMultiServiceFactory
>
xServiceManager
(
reinterpret
_cast
<
XMultiServiceFactory
*
>
(
pServiceManager
)
)
;
Reference
<
XMultiServiceFactory
>
xServiceManager
(
static
_cast
<
XMultiServiceFactory
*
>
(
pServiceManager
)
)
;
if
(
SmFilterDetect
::
impl_getStaticImplementationName
().
equalsAscii
(
pImplementationName
)
)
{
...
...
starmath/source/dialog.cxx
Dosyayı görüntüle @
c96f4e56
...
...
@@ -1778,7 +1778,7 @@ IMPL_LINK( SmSymDefineDialog, SubsetChangeHdl, ListBox *, EMPTYARG pListBox )
sal_Int32
nPos
=
pFontsSubsetLB
->
GetSelectEntryPos
();
if
(
LISTBOX_ENTRY_NOTFOUND
!=
nPos
)
{
const
Subset
*
pSubset
=
reinterpret
_cast
<
const
Subset
*>
(
pFontsSubsetLB
->
GetEntryData
(
nPos
));
const
Subset
*
pSubset
=
static
_cast
<
const
Subset
*>
(
pFontsSubsetLB
->
GetEntryData
(
nPos
));
if
(
pSubset
)
{
pCharsetDisplay
->
SelectCharacter
(
pSubset
->
GetRangeMin
()
);
...
...
starmath/source/register.cxx
Dosyayı görüntüle @
c96f4e56
...
...
@@ -49,7 +49,7 @@ SAL_DLLPUBLIC_EXPORT void* SAL_CALL sm_component_getFactory( const sal_Char* pIm
{
// Define variables which are used in following macros.
Reference
<
XSingleServiceFactory
>
xFactory
;
Reference
<
XMultiServiceFactory
>
xServiceManager
(
reinterpret
_cast
<
XMultiServiceFactory
*
>
(
pServiceManager
)
)
;
Reference
<
XMultiServiceFactory
>
xServiceManager
(
static
_cast
<
XMultiServiceFactory
*
>
(
pServiceManager
)
)
;
if
(
SmXMLImport_getImplementationName
().
equalsAscii
(
pImplementationName
))
{
...
...
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