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
b35f3dfb
Kaydet (Commit)
b35f3dfb
authored
Tem 01, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#706240 Uncaught exception
Change-Id: Ie31f5e1ff74ff8b9f35d7ce08e1f02a780375890
üst
7dda48d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
11 deletions
+17
-11
namecont.cxx
basic/source/uno/namecont.cxx
+17
-11
No files found.
basic/source/uno/namecont.cxx
Dosyayı görüntüle @
b35f3dfb
...
...
@@ -496,21 +496,27 @@ sal_Bool SfxLibraryContainer::isModified()
for
(
sal_Int32
i
=
0
;
i
<
nNameCount
;
i
++
)
{
OUString
aName
=
pNames
[
i
];
SfxLibrary
*
pImplLib
=
getImplLib
(
aName
);
if
(
pImplLib
->
isModified
()
)
try
{
if
(
aName
==
"Standard"
)
SfxLibrary
*
pImplLib
=
getImplLib
(
aName
);
if
(
pImplLib
->
isModified
()
)
{
// this is a workaround that has to be implemented because
// empty standard library should stay marked as modified
// but should not be treated as modified while it is empty
if
(
pImplLib
->
hasElements
()
)
if
(
aName
==
"Standard"
)
{
// this is a workaround that has to be implemented because
// empty standard library should stay marked as modified
// but should not be treated as modified while it is empty
if
(
pImplLib
->
hasElements
()
)
return
sal_True
;
}
else
{
return
sal_True
;
}
}
else
{
return
sal_True
;
}
}
catch
(
const
css
::
container
::
NoSuchElementException
&
)
{
}
}
...
...
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