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
0bab690a
Kaydet (Commit)
0bab690a
authored
Nis 23, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#707317 Uncaught exception
Change-Id: I8ff4820f03311cb059da5e515d31d08239ac732d
üst
06bd4e49
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
MasterPropertySet.hxx
include/comphelper/MasterPropertySet.hxx
+3
-1
SwXDocumentSettings.cxx
sw/source/core/uibase/uno/SwXDocumentSettings.cxx
+1
-1
SwXDocumentSettings.hxx
sw/source/core/uibase/uno/SwXDocumentSettings.hxx
+3
-1
No files found.
include/comphelper/MasterPropertySet.hxx
Dosyayı görüntüle @
0bab690a
...
...
@@ -69,7 +69,9 @@ namespace comphelper
virtual
void
_preSetValues
()
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
beans
::
PropertyVetoException
,
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
)
=
0
;
virtual
void
_setSingleValue
(
const
comphelper
::
PropertyInfo
&
rInfo
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
beans
::
PropertyVetoException
,
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
)
=
0
;
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
beans
::
PropertyVetoException
,
css
::
lang
::
IllegalArgumentException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
=
0
;
virtual
void
_postSetValues
()
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
beans
::
PropertyVetoException
,
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
)
=
0
;
...
...
sw/source/core/uibase/uno/SwXDocumentSettings.cxx
Dosyayı görüntüle @
0bab690a
...
...
@@ -302,7 +302,7 @@ void SwXDocumentSettings::_preSetValues ()
}
void
SwXDocumentSettings
::
_setSingleValue
(
const
comphelper
::
PropertyInfo
&
rInfo
,
const
uno
::
Any
&
rValue
)
throw
(
beans
::
UnknownPropertyException
,
beans
::
PropertyVetoException
,
lang
::
IllegalArgumentException
,
lang
::
WrappedTargetException
)
throw
(
beans
::
UnknownPropertyException
,
beans
::
PropertyVetoException
,
lang
::
IllegalArgumentException
,
lang
::
WrappedTargetException
,
uno
::
RuntimeException
,
std
::
exception
)
{
if
(
rInfo
.
mnAttributes
&
PropertyAttribute
::
READONLY
)
throw
PropertyVetoException
(
"Property is read-only: "
+
rInfo
.
maName
,
static_cast
<
cppu
::
OWeakObject
*
>
(
0
)
);
...
...
sw/source/core/uibase/uno/SwXDocumentSettings.hxx
Dosyayı görüntüle @
0bab690a
...
...
@@ -52,7 +52,9 @@ protected:
virtual
void
_preSetValues
()
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
beans
::
PropertyVetoException
,
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
)
SAL_OVERRIDE
;
virtual
void
_setSingleValue
(
const
comphelper
::
PropertyInfo
&
rInfo
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
beans
::
PropertyVetoException
,
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
)
SAL_OVERRIDE
;
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
beans
::
PropertyVetoException
,
css
::
lang
::
IllegalArgumentException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
_postSetValues
()
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
beans
::
PropertyVetoException
,
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
)
SAL_OVERRIDE
;
...
...
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