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
fc78d8df
Kaydet (Commit)
fc78d8df
authored
Eki 17, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Pass args by const &
Change-Id: I510e1aba6772e1f8d4013b235e95a1e5599fd601
üst
991fb393
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
cgm.cxx
filter/source/graphicfilter/icgm/cgm.cxx
+1
-1
sdcgmfilter.cxx
sd/source/filter/cgm/sdcgmfilter.cxx
+2
-2
No files found.
filter/source/graphicfilter/icgm/cgm.cxx
Dosyayı görüntüle @
fc78d8df
...
...
@@ -710,7 +710,7 @@ bool CGM::Write( SvStream& rIStm )
// GraphicImport - the exported function
extern
"C"
SAL_DLLPUBLIC_EXPORT
sal_uInt32
SAL_CALL
ImportCGM
(
OUString
&
rFileName
,
uno
::
Reference
<
frame
::
XModel
>
&
rXModel
,
sal_uInt32
nMode
,
css
::
uno
::
Reference
<
css
::
task
::
XStatusIndicator
>
&
aXStatInd
)
ImportCGM
(
OUString
const
&
rFileName
,
uno
::
Reference
<
frame
::
XModel
>
const
&
rXModel
,
sal_uInt32
nMode
,
css
::
uno
::
Reference
<
css
::
task
::
XStatusIndicator
>
const
&
aXStatInd
)
{
sal_uInt32
nStatus
=
0
;
// retvalue == 0 -> ERROR
...
...
sd/source/filter/cgm/sdcgmfilter.cxx
Dosyayı görüntüle @
fc78d8df
...
...
@@ -40,12 +40,12 @@ using namespace ::com::sun::star::uno;
using
namespace
::
com
::
sun
::
star
::
task
;
using
namespace
::
com
::
sun
::
star
::
frame
;
typedef
sal_uInt32
(
SAL_CALL
*
ImportCGMPointer
)(
OUString
&
,
Reference
<
XModel
>&
,
sal_uInt32
,
Reference
<
XStatusIndicator
>
&
);
typedef
sal_uInt32
(
SAL_CALL
*
ImportCGMPointer
)(
OUString
const
&
,
Reference
<
XModel
>
const
&
,
sal_uInt32
,
Reference
<
XStatusIndicator
>
const
&
);
typedef
sal_Bool
(
SAL_CALL
*
ExportCGMPointer
)(
OUString
&
,
Reference
<
XModel
>&
,
Reference
<
XStatusIndicator
>&
,
void
*
);
#ifdef DISABLE_DYNLOADING
extern
"C"
sal_uInt32
ImportCGM
(
OUString
&
,
Reference
<
XModel
>&
,
sal_uInt32
,
Reference
<
XStatusIndicator
>
&
);
extern
"C"
sal_uInt32
ImportCGM
(
OUString
const
&
,
Reference
<
XModel
>
const
&
,
sal_uInt32
,
Reference
<
XStatusIndicator
>
const
&
);
#endif
...
...
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