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
b9155a66
Kaydet (Commit)
b9155a66
authored
Haz 18, 2013
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#65882 - fix intermittent writer unit test failure on exit.
Change-Id: Iffa4ea724f2192f85df66eaf4e9e4f30e6ba3d4b
üst
445ebce3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
16 deletions
+23
-16
XMLRedlineImportHelper.cxx
sw/source/filter/xml/XMLRedlineImportHelper.cxx
+23
-16
No files found.
sw/source/filter/xml/XMLRedlineImportHelper.cxx
Dosyayı görüntüle @
b9155a66
...
...
@@ -368,25 +368,32 @@ XMLRedlineImportHelper::~XMLRedlineImportHelper()
}
// set redline mode & key
Any
aAny
;
try
{
Any
aAny
;
aAny
.
setValue
(
&
bShowChanges
,
::
getBooleanCppuType
()
);
if
(
bHandleShowChanges
)
xModelPropertySet
->
setPropertyValue
(
sShowChanges
,
aAny
);
else
xImportInfoPropertySet
->
setPropertyValue
(
sShowChanges
,
aAny
);
aAny
.
setValue
(
&
bShowChanges
,
::
getBooleanCppuType
()
);
if
(
bHandleShowChanges
)
xModelPropertySet
->
setPropertyValue
(
sShowChanges
,
aAny
);
else
xImportInfoPropertySet
->
setPropertyValue
(
sShowChanges
,
aAny
);
aAny
.
setValue
(
&
bRecordChanges
,
::
getBooleanCppuType
()
);
if
(
bHandleRecordChanges
)
xModelPropertySet
->
setPropertyValue
(
sRecordChanges
,
aAny
);
else
xImportInfoPropertySet
->
setPropertyValue
(
sRecordChanges
,
aAny
);
aAny
.
setValue
(
&
bRecordChanges
,
::
getBooleanCppuType
()
);
if
(
bHandleRecordChanges
)
xModelPropertySet
->
setPropertyValue
(
sRecordChanges
,
aAny
);
else
xImportInfoPropertySet
->
setPropertyValue
(
sRecordChanges
,
aAny
);
aAny
<<=
aProtectionKey
;
if
(
bHandleProtectionKey
)
xModelPropertySet
->
setPropertyValue
(
sRedlineProtectionKey
,
aAny
);
else
xImportInfoPropertySet
->
setPropertyValue
(
sRedlineProtectionKey
,
aAny
);
aAny
<<=
aProtectionKey
;
if
(
bHandleProtectionKey
)
xModelPropertySet
->
setPropertyValue
(
sRedlineProtectionKey
,
aAny
);
else
xImportInfoPropertySet
->
setPropertyValue
(
sRedlineProtectionKey
,
aAny
);
}
catch
(
const
uno
::
RuntimeException
&
)
// fdo#65882
{
SAL_WARN
(
"sw"
,
"potentially benign ordering issue during shutdown"
);
}
}
void
XMLRedlineImportHelper
::
Add
(
...
...
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