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
31778e3e
Kaydet (Commit)
31778e3e
authored
Haz 10, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#707350 Uncaught exception
Change-Id: Ic338659d34c91baad715c2181f420d919acf1fe9
üst
3cd26a85
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
4 deletions
+14
-4
ChainablePropertySet.hxx
include/comphelper/ChainablePropertySet.hxx
+6
-2
unomod.hxx
sw/source/uibase/inc/unomod.hxx
+5
-1
unomod.cxx
sw/source/uibase/uno/unomod.cxx
+3
-1
No files found.
include/comphelper/ChainablePropertySet.hxx
Dosyayı görüntüle @
31778e3e
...
...
@@ -69,8 +69,12 @@ namespace comphelper
css
::
lang
::
IllegalArgumentException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
)
=
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
;
virtual
void
_setSingleValue
(
const
comphelper
::
PropertyInfo
&
rInfo
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
)
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
beans
::
PropertyVetoException
,
css
::
lang
::
IllegalArgumentException
,
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
)
=
0
;
virtual
void
_postSetValues
()
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
beans
::
PropertyVetoException
,
...
...
sw/source/uibase/inc/unomod.hxx
Dosyayı görüntüle @
31778e3e
...
...
@@ -143,7 +143,11 @@ protected:
css
::
lang
::
WrappedTargetException
,
css
::
uno
::
RuntimeException
)
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
)
SAL_OVERRIDE
;
virtual
void
_postSetValues
()
throw
(
css
::
beans
::
UnknownPropertyException
,
css
::
beans
::
PropertyVetoException
,
...
...
sw/source/uibase/uno/unomod.cxx
Dosyayı görüntüle @
31778e3e
...
...
@@ -603,7 +603,9 @@ void SwXViewSettings::_preSetValues ()
}
void
SwXViewSettings
::
_setSingleValue
(
const
comphelper
::
PropertyInfo
&
rInfo
,
const
uno
::
Any
&
rValue
)
throw
(
UnknownPropertyException
,
PropertyVetoException
,
IllegalArgumentException
,
WrappedTargetException
)
throw
(
UnknownPropertyException
,
PropertyVetoException
,
IllegalArgumentException
,
WrappedTargetException
,
RuntimeException
)
{
bool
bVal
=
HANDLE_VIEWSET_ZOOM
!=
rInfo
.
mnHandle
?
*
(
sal_Bool
*
)
rValue
.
getValue
()
:
sal_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