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
eb97362a
Kaydet (Commit)
eb97362a
authored
Nis 05, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#706518 Uncaught exception
Change-Id: I2db2ba69d7aac319fa9b446766729813c09d344f
üst
b7dcef0b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
eformspropertyhandler.cxx
extensions/source/propctrlr/eformspropertyhandler.cxx
+1
-1
eformspropertyhandler.hxx
extensions/source/propctrlr/eformspropertyhandler.hxx
+1
-1
propertyhandler.cxx
extensions/source/propctrlr/propertyhandler.cxx
+1
-1
propertyhandler.hxx
extensions/source/propctrlr/propertyhandler.hxx
+1
-1
No files found.
extensions/source/propctrlr/eformspropertyhandler.cxx
Dosyayı görüntüle @
eb97362a
...
...
@@ -530,7 +530,7 @@ namespace pcr
}
void
SAL_CALL
EFormsPropertyHandler
::
addPropertyChangeListener
(
const
Reference
<
XPropertyChangeListener
>&
_rxListener
)
throw
(
RuntimeException
,
std
::
exception
)
void
SAL_CALL
EFormsPropertyHandler
::
addPropertyChangeListener
(
const
Reference
<
XPropertyChangeListener
>&
_rxListener
)
throw
(
NullPointerException
,
RuntimeException
,
std
::
exception
)
{
::
osl
::
MutexGuard
aGuard
(
m_aMutex
);
EFormsPropertyHandler_Base
::
addPropertyChangeListener
(
_rxListener
);
...
...
extensions/source/propctrlr/eformspropertyhandler.hxx
Dosyayı görüntüle @
eb97362a
...
...
@@ -72,7 +72,7 @@ namespace pcr
virtual
void
SAL_CALL
actuatingPropertyChanged
(
const
OUString
&
_rActuatingPropertyName
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
_rNewValue
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
_rOldValue
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
inspection
::
XObjectInspectorUI
>&
_rxInspectorUI
,
sal_Bool
)
throw
(
::
com
::
sun
::
star
::
lang
::
NullPointerException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
convertToPropertyValue
(
const
OUString
&
_rPropertyName
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
_rControlValue
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
convertToControlValue
(
const
OUString
&
_rPropertyName
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
_rPropertyValue
,
const
::
com
::
sun
::
star
::
uno
::
Type
&
_rControlValueType
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
addPropertyChangeListener
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertyChangeListener
>&
_rxListener
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
addPropertyChangeListener
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertyChangeListener
>&
_rxListener
)
throw
(
::
com
::
sun
::
star
::
lang
::
NullPointerException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
removePropertyChangeListener
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertyChangeListener
>&
_rxListener
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
// PropertyHandler overridables
...
...
extensions/source/propctrlr/propertyhandler.cxx
Dosyayı görüntüle @
eb97362a
...
...
@@ -225,7 +225,7 @@ namespace pcr
OSL_FAIL
(
"PropertyHandler::actuatingPropertyChanged: not implemented!"
);
}
void
SAL_CALL
PropertyHandler
::
addPropertyChangeListener
(
const
Reference
<
XPropertyChangeListener
>&
_rxListener
)
throw
(
RuntimeException
,
std
::
exception
)
void
SAL_CALL
PropertyHandler
::
addPropertyChangeListener
(
const
Reference
<
XPropertyChangeListener
>&
_rxListener
)
throw
(
NullPointerException
,
RuntimeException
,
std
::
exception
)
{
::
osl
::
MutexGuard
aGuard
(
m_aMutex
);
if
(
!
_rxListener
.
is
()
)
...
...
extensions/source/propctrlr/propertyhandler.hxx
Dosyayı görüntüle @
eb97362a
...
...
@@ -114,7 +114,7 @@ namespace pcr
virtual
sal_Bool
SAL_CALL
isComposable
(
const
OUString
&
_rPropertyName
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
inspection
::
InteractiveSelectionResult
SAL_CALL
onInteractivePropertySelection
(
const
OUString
&
_rPropertyName
,
sal_Bool
_bPrimary
,
::
com
::
sun
::
star
::
uno
::
Any
&
_rData
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
inspection
::
XObjectInspectorUI
>&
_rxInspectorUI
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
lang
::
NullPointerException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
actuatingPropertyChanged
(
const
OUString
&
_rActuatingPropertyName
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
_rNewValue
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
_rOldValue
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
inspection
::
XObjectInspectorUI
>&
_rxInspectorUI
,
sal_Bool
_bFirstTimeInit
)
throw
(
::
com
::
sun
::
star
::
lang
::
NullPointerException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
addPropertyChangeListener
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertyChangeListener
>&
_rxListener
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
addPropertyChangeListener
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertyChangeListener
>&
_rxListener
)
throw
(
::
com
::
sun
::
star
::
lang
::
NullPointerException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
removePropertyChangeListener
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertyChangeListener
>&
_rxListener
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
suspend
(
sal_Bool
_bSuspend
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
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