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
5d390635
Kaydet (Commit)
5d390635
authored
Haz 29, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1308583 Uncaught exception
Change-Id: Ibc6a8e437d81769b9a77d0a52e98f71b1c7e7d51
üst
0a4e6521
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
FormComponent.cxx
forms/source/component/FormComponent.cxx
+1
-1
FormattedField.cxx
forms/source/component/FormattedField.cxx
+1
-1
FormattedField.hxx
forms/source/component/FormattedField.hxx
+1
-1
FormComponent.hxx
forms/source/inc/FormComponent.hxx
+1
-1
No files found.
forms/source/component/FormComponent.cxx
Dosyayı görüntüle @
5d390635
...
...
@@ -1421,7 +1421,7 @@ void OBoundControlModel::onValuePropertyChange( ControlModelLock& i_rControLock
recheckValidity
(
true
);
}
void
OBoundControlModel
::
_propertyChanged
(
const
PropertyChangeEvent
&
_rEvt
)
throw
(
RuntimeException
)
void
OBoundControlModel
::
_propertyChanged
(
const
PropertyChangeEvent
&
_rEvt
)
throw
(
RuntimeException
,
std
::
exception
)
{
ControlModelLock
aLock
(
*
this
);
OSL_ENSURE
(
_rEvt
.
PropertyName
==
m_sValuePropertyName
,
...
...
forms/source/component/FormattedField.cxx
Dosyayı görüntüle @
5d390635
...
...
@@ -438,7 +438,7 @@ Any SAL_CALL OFormattedModel::getPropertyDefault( const OUString& aPropertyName
return
OEditBaseModel
::
getPropertyDefault
(
aPropertyName
);
}
void
OFormattedModel
::
_propertyChanged
(
const
com
::
sun
::
star
::
beans
::
PropertyChangeEvent
&
evt
)
throw
(
RuntimeException
)
void
OFormattedModel
::
_propertyChanged
(
const
com
::
sun
::
star
::
beans
::
PropertyChangeEvent
&
evt
)
throw
(
RuntimeException
,
std
::
exception
)
{
// TODO: check how this works with external bindings
OSL_ENSURE
(
evt
.
Source
==
m_xAggregateSet
,
"OFormattedModel::_propertyChanged: where did this come from?"
);
...
...
forms/source/component/FormattedField.hxx
Dosyayı görüntüle @
5d390635
...
...
@@ -107,7 +107,7 @@ class OFormattedModel
)
const
SAL_OVERRIDE
;
// XPropertyChangeListener
virtual
void
_propertyChanged
(
const
::
com
::
sun
::
star
::
beans
::
PropertyChangeEvent
&
evt
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
virtual
void
_propertyChanged
(
const
::
com
::
sun
::
star
::
beans
::
PropertyChangeEvent
&
evt
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
// prevent method hiding
using
OEditBaseModel
::
disposing
;
...
...
forms/source/inc/FormComponent.hxx
Dosyayı görüntüle @
5d390635
...
...
@@ -1079,7 +1079,7 @@ protected:
protected
:
// OPropertyChangeListener
virtual
void
_propertyChanged
(
const
::
com
::
sun
::
star
::
beans
::
PropertyChangeEvent
&
_rEvt
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
;
_propertyChanged
(
const
::
com
::
sun
::
star
::
beans
::
PropertyChangeEvent
&
_rEvt
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
/// checks whether we currently have an external value binding in place
inline
bool
hasExternalValueBinding
()
const
{
return
m_xExternalBinding
.
is
();
}
...
...
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