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
0c38c3e0
Kaydet (Commit)
0c38c3e0
authored
Nis 08, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
avoid possibility of storagename collision on 64bit
üst
37af4b00
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
wrtw8esh.cxx
sw/source/filter/ww8/wrtw8esh.cxx
+3
-4
No files found.
sw/source/filter/ww8/wrtw8esh.cxx
Dosyayı görüntüle @
0c38c3e0
...
@@ -2805,12 +2805,11 @@ bool SwMSConvertControls::ExportControl(WW8Export &rWW8Wrt, const SdrObject *pOb
...
@@ -2805,12 +2805,11 @@ bool SwMSConvertControls::ExportControl(WW8Export &rWW8Wrt, const SdrObject *pOb
STREAM_SHARE_DENYALL
);
STREAM_SHARE_DENYALL
);
//Create a destination storage for the microsoft control
//Create a destination storage for the microsoft control
String
sStorageName
(
'_'
)
;
rtl
::
OUStringBuffer
sStorageName
;
sStorageName
+=
String
::
CreateFromInt32
((
sal_uInt32
)(
sal_uIntPtr
)
pObj
);
sStorageName
.
append
(
'_'
).
append
(
reinterpret_cast
<
sal_Int64
>
(
pObj
)
);
SvStorageRef
xOleStg
=
xObjPool
->
OpenSotStorage
(
sStorageName
,
SvStorageRef
xOleStg
=
xObjPool
->
OpenSotStorage
(
sStorageName
.
makeStringAndClear
()
,
STREAM_READWRITE
|
STREAM_SHARE_DENYALL
);
STREAM_READWRITE
|
STREAM_SHARE_DENYALL
);
if
(
!
xOleStg
.
Is
())
if
(
!
xOleStg
.
Is
())
return
false
;
return
false
;
...
...
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