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
8e08a416
Kaydet (Commit)
8e08a416
authored
Nis 17, 2013
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
-Werror=int-to-pointer-cast (MinGW, extensions)
Change-Id: I16db60c861ef7ac0a2a9076fde1996a7b7b0e991
üst
438f5b9f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
sysplug.cxx
extensions/source/plugin/win/sysplug.cxx
+6
-5
No files found.
extensions/source/plugin/win/sysplug.cxx
Dosyayı görüntüle @
8e08a416
...
...
@@ -304,7 +304,7 @@ NPError PluginComm_Impl::NPP_DestroyStream( NPP instance, NPStream* stream, NPEr
m_eCall
=
eNPP_DestroyStream
;
m_aArgs
[
0
]
=
(
void
*
)
instance
;
m_aArgs
[
1
]
=
(
void
*
)
stream
;
m_aArgs
[
2
]
=
(
void
*
)
reason
;
m_aArgs
[
2
]
=
reinterpret_cast
<
void
*
>
(
static_cast
<
sal_IntPtr
>
(
reason
))
;
return
(
NPError
)
execute
();
}
...
...
@@ -316,8 +316,8 @@ NPError PluginComm_Impl::NPP_New( NPMIMEType pluginType, NPP instance, uint16_t
m_eCall
=
eNPP_New
;
m_aArgs
[
0
]
=
(
void
*
)
pluginType
;
m_aArgs
[
1
]
=
(
void
*
)
instance
;
m_aArgs
[
2
]
=
(
void
*
)
mode
;
m_aArgs
[
3
]
=
(
void
*
)
argc
;
m_aArgs
[
2
]
=
reinterpret_cast
<
void
*
>
(
static_cast
<
sal_uIntPtr
>
(
mode
))
;
m_aArgs
[
3
]
=
reinterpret_cast
<
void
*
>
(
static_cast
<
sal_IntPtr
>
(
argc
))
;
m_aArgs
[
4
]
=
(
void
*
)
argn
;
m_aArgs
[
5
]
=
(
void
*
)
argv
;
m_aArgs
[
6
]
=
(
void
*
)
saved
;
...
...
@@ -333,7 +333,8 @@ NPError PluginComm_Impl::NPP_NewStream( NPP instance, NPMIMEType type, NPStream*
m_aArgs
[
0
]
=
(
void
*
)
instance
;
m_aArgs
[
1
]
=
(
void
*
)
type
;
m_aArgs
[
2
]
=
(
void
*
)
stream
;
m_aArgs
[
3
]
=
(
void
*
)
seekable
;
m_aArgs
[
3
]
=
reinterpret_cast
<
void
*
>
(
static_cast
<
sal_uIntPtr
>
(
seekable
));
m_aArgs
[
4
]
=
(
void
*
)
stype
;
return
(
NPError
)
execute
();
}
...
...
@@ -376,7 +377,7 @@ void PluginComm_Impl::NPP_URLNotify( NPP instance, const char* url, NPReason rea
m_eCall
=
eNPP_URLNotify
;
m_aArgs
[
0
]
=
(
void
*
)
instance
;
m_aArgs
[
1
]
=
(
void
*
)
url
;
m_aArgs
[
2
]
=
(
void
*
)
reason
;
m_aArgs
[
2
]
=
reinterpret_cast
<
void
*
>
(
static_cast
<
sal_IntPtr
>
(
reason
))
;
m_aArgs
[
3
]
=
notifyData
;
execute
();
}
...
...
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