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
bfd63516
Kaydet (Commit)
bfd63516
authored
Ara 09, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Resolves: fdo#87108 crash on saving fodg
Change-Id: Ib88f0e9b0a3ba229c9e9f6cf20831c16051e3e29
üst
c0dcf497
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
sdxmlexp.cxx
xmloff/source/draw/sdxmlexp.cxx
+7
-4
No files found.
xmloff/source/draw/sdxmlexp.cxx
Dosyayı görüntüle @
bfd63516
...
...
@@ -2552,10 +2552,13 @@ void SdXMLExport::GetConfigurationSettings(uno::Sequence<beans::PropertyValue>&
Reference
<
beans
::
XPropertySet
>
xProps
(
xFac
->
createInstance
(
"com.sun.star.document.Settings"
),
UNO_QUERY
);
if
(
xProps
.
is
()
)
SvXMLUnitConverter
::
convertPropertySet
(
rProps
,
xProps
);
DocumentSettingsSerializer
*
pFilter
;
pFilter
=
dynamic_cast
<
DocumentSettingsSerializer
*>
(
xProps
.
get
());
if
(
pFilter
)
rProps
=
pFilter
->
filterStreamsToStorage
(
GetTargetStorage
(),
rProps
);
DocumentSettingsSerializer
*
pFilter
(
dynamic_cast
<
DocumentSettingsSerializer
*>
(
xProps
.
get
()));
if
(
!
pFilter
)
return
;
const
uno
::
Reference
<
embed
::
XStorage
>
xStorage
(
GetTargetStorage
());
if
(
!
xStorage
.
is
())
return
;
rProps
=
pFilter
->
filterStreamsToStorage
(
xStorage
,
rProps
);
}
}
...
...
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