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
3f8a28f4
Kaydet (Commit)
3f8a28f4
authored
Kas 06, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1338239 Uncaught exception
Change-Id: I99ea322db83a6deb67483435de1549380bfec7fb
üst
aa9f75ad
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
controlmodelcontainerbase.hxx
include/toolkit/controls/controlmodelcontainerbase.hxx
+1
-1
dialogcontrol.hxx
include/toolkit/controls/dialogcontrol.hxx
+1
-1
controlmodelcontainerbase.cxx
toolkit/source/controls/controlmodelcontainerbase.cxx
+1
-1
dialogcontrol.cxx
toolkit/source/controls/dialogcontrol.cxx
+1
-1
No files found.
include/toolkit/controls/controlmodelcontainerbase.hxx
Dosyayı görüntüle @
3f8a28f4
...
...
@@ -261,7 +261,7 @@ public:
// to implement this, certainly Dialog does, lets see about others
virtual
void
SAL_CALL
modified
(
const
css
::
lang
::
EventObject
&
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
{}
protected
:
virtual
void
ImplModelPropertiesChanged
(
const
css
::
uno
::
Sequence
<
css
::
beans
::
PropertyChangeEvent
>&
rEvents
)
throw
(
css
::
uno
::
RuntimeException
)
override
;
virtual
void
ImplModelPropertiesChanged
(
const
css
::
uno
::
Sequence
<
css
::
beans
::
PropertyChangeEvent
>&
rEvents
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
virtual
void
removingControl
(
const
css
::
uno
::
Reference
<
css
::
awt
::
XControl
>&
_rxControl
)
override
;
virtual
void
addingControl
(
const
css
::
uno
::
Reference
<
css
::
awt
::
XControl
>&
_rxControl
)
override
;
};
...
...
include/toolkit/controls/dialogcontrol.hxx
Dosyayı görüntüle @
3f8a28f4
...
...
@@ -164,7 +164,7 @@ public:
protected
:
virtual
void
PrepareWindowDescriptor
(
css
::
awt
::
WindowDescriptor
&
rDesc
)
override
;
virtual
void
ImplModelPropertiesChanged
(
const
css
::
uno
::
Sequence
<
css
::
beans
::
PropertyChangeEvent
>&
rEvents
)
throw
(
css
::
uno
::
RuntimeException
)
override
;
virtual
void
ImplModelPropertiesChanged
(
const
css
::
uno
::
Sequence
<
css
::
beans
::
PropertyChangeEvent
>&
rEvents
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
protected
:
};
...
...
toolkit/source/controls/controlmodelcontainerbase.cxx
Dosyayı görüntüle @
3f8a28f4
...
...
@@ -1668,7 +1668,7 @@ void ControlContainerBase::elementReplaced( const ContainerEvent& Event ) throw(
}
// XPropertiesChangeListener
void
ControlContainerBase
::
ImplModelPropertiesChanged
(
const
Sequence
<
PropertyChangeEvent
>&
rEvents
)
throw
(
RuntimeException
)
void
ControlContainerBase
::
ImplModelPropertiesChanged
(
const
Sequence
<
PropertyChangeEvent
>&
rEvents
)
throw
(
RuntimeException
,
std
::
exception
)
{
if
(
!
isDesignMode
()
&&
!
mbCreatingCompatiblePeer
)
{
...
...
toolkit/source/controls/dialogcontrol.cxx
Dosyayı görüntüle @
3f8a28f4
...
...
@@ -650,7 +650,7 @@ throw (RuntimeException, std::exception)
ImplUpdateResourceResolver
();
}
void
UnoDialogControl
::
ImplModelPropertiesChanged
(
const
Sequence
<
PropertyChangeEvent
>&
rEvents
)
throw
(
RuntimeException
)
void
UnoDialogControl
::
ImplModelPropertiesChanged
(
const
Sequence
<
PropertyChangeEvent
>&
rEvents
)
throw
(
RuntimeException
,
std
::
exception
)
{
sal_Int32
nLen
=
rEvents
.
getLength
();
for
(
sal_Int32
i
=
0
;
i
<
nLen
;
i
++
)
...
...
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