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
6fbe00f9
Kaydet (Commit)
6fbe00f9
authored
Şub 25, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#983702 Uncaught exception
Change-Id: I3a0b4c8fe4208d0945860f6b4e1b31852aef8502
üst
5da1ef56
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
40 additions
and
18 deletions
+40
-18
containermultiplexer.cxx
comphelper/source/container/containermultiplexer.cxx
+8
-4
SelectionMultiplex.cxx
comphelper/source/misc/SelectionMultiplex.cxx
+2
-1
propmultiplex.cxx
comphelper/source/property/propmultiplex.cxx
+2
-1
SelectionMultiplex.hxx
include/comphelper/SelectionMultiplex.hxx
+2
-1
containermultiplexer.hxx
include/comphelper/containermultiplexer.hxx
+12
-4
propmultiplex.hxx
include/comphelper/propmultiplex.hxx
+2
-1
Navigator.cxx
reportdesign/source/ui/dlg/Navigator.cxx
+8
-4
unomodule.cxx
sd/source/ui/unoidl/unomodule.cxx
+2
-1
unomodule.hxx
sd/source/ui/unoidl/unomodule.hxx
+2
-1
No files found.
comphelper/source/container/containermultiplexer.cxx
Dosyayı görüntüle @
6fbe00f9
...
...
@@ -50,22 +50,26 @@ namespace comphelper
}
void
OContainerListener
::
_elementInserted
(
const
ContainerEvent
&
/*_rEvent*/
)
throw
(
RuntimeException
)
void
OContainerListener
::
_elementInserted
(
const
ContainerEvent
&
/*_rEvent*/
)
throw
(
RuntimeException
,
std
::
exception
)
{
}
void
OContainerListener
::
_elementRemoved
(
const
ContainerEvent
&
)
throw
(
RuntimeException
)
void
OContainerListener
::
_elementRemoved
(
const
ContainerEvent
&
)
throw
(
RuntimeException
,
std
::
exception
)
{
}
void
OContainerListener
::
_elementReplaced
(
const
ContainerEvent
&
/*_rEvent*/
)
throw
(
RuntimeException
)
void
OContainerListener
::
_elementReplaced
(
const
ContainerEvent
&
/*_rEvent*/
)
throw
(
RuntimeException
,
std
::
exception
)
{
}
void
OContainerListener
::
_disposing
(
const
EventObject
&
)
throw
(
RuntimeException
)
void
OContainerListener
::
_disposing
(
const
EventObject
&
)
throw
(
RuntimeException
,
std
::
exception
)
{
}
...
...
comphelper/source/misc/SelectionMultiplex.cxx
Dosyayı görüntüle @
6fbe00f9
...
...
@@ -41,7 +41,8 @@ OSelectionChangeListener::~OSelectionChangeListener()
}
void
OSelectionChangeListener
::
_disposing
(
const
EventObject
&
)
throw
(
RuntimeException
)
void
OSelectionChangeListener
::
_disposing
(
const
EventObject
&
)
throw
(
RuntimeException
,
std
::
exception
)
{
// nothing to do here
}
...
...
comphelper/source/property/propmultiplex.cxx
Dosyayı görüntüle @
6fbe00f9
...
...
@@ -40,7 +40,8 @@ OPropertyChangeListener::~OPropertyChangeListener()
}
void
OPropertyChangeListener
::
_disposing
(
const
EventObject
&
)
throw
(
RuntimeException
)
void
OPropertyChangeListener
::
_disposing
(
const
EventObject
&
)
throw
(
RuntimeException
,
std
::
exception
)
{
// nothing to do here
}
...
...
include/comphelper/SelectionMultiplex.hxx
Dosyayı görüntüle @
6fbe00f9
...
...
@@ -53,7 +53,8 @@ namespace comphelper
virtual
~
OSelectionChangeListener
();
virtual
void
_selectionChanged
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
aEvent
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
=
0
;
virtual
void
_disposing
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
_rSource
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
_disposing
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
_rSource
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
protected
:
// pseudo-private. Making it private now could break compatibility
...
...
include/comphelper/containermultiplexer.hxx
Dosyayı görüntüle @
6fbe00f9
...
...
@@ -50,10 +50,18 @@ namespace comphelper
OContainerListener
(
::
osl
::
Mutex
&
_rMutex
);
virtual
~
OContainerListener
();
virtual
void
_elementInserted
(
const
::
com
::
sun
::
star
::
container
::
ContainerEvent
&
_rEvent
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
_elementRemoved
(
const
::
com
::
sun
::
star
::
container
::
ContainerEvent
&
_Event
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
_elementReplaced
(
const
::
com
::
sun
::
star
::
container
::
ContainerEvent
&
_rEvent
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
_disposing
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
_rSource
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
_elementInserted
(
const
::
com
::
sun
::
star
::
container
::
ContainerEvent
&
_rEvent
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
_elementRemoved
(
const
::
com
::
sun
::
star
::
container
::
ContainerEvent
&
_Event
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
_elementReplaced
(
const
::
com
::
sun
::
star
::
container
::
ContainerEvent
&
_rEvent
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
_disposing
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
_rSource
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
protected
:
void
setAdapter
(
OContainerListenerAdapter
*
_pAdapter
);
...
...
include/comphelper/propmultiplex.hxx
Dosyayı görüntüle @
6fbe00f9
...
...
@@ -52,7 +52,8 @@ namespace comphelper
virtual
~
OPropertyChangeListener
();
virtual
void
_propertyChanged
(
const
::
com
::
sun
::
star
::
beans
::
PropertyChangeEvent
&
_rEvent
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
=
0
;
virtual
void
_disposing
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
_rSource
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
_disposing
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
_rSource
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
protected
:
/** If the derivee also owns the mutex which we know as reference, then call this within your
...
...
reportdesign/source/ui/dlg/Navigator.cxx
Dosyayı görüntüle @
6fbe00f9
...
...
@@ -133,7 +133,8 @@ class NavigatorTree : public ::cppu::BaseMutex
// OContainerListener
virtual
void
_elementInserted
(
const
container
::
ContainerEvent
&
_rEvent
)
throw
(
uno
::
RuntimeException
);
virtual
void
_elementRemoved
(
const
container
::
ContainerEvent
&
_Event
)
throw
(
uno
::
RuntimeException
);
virtual
void
_elementRemoved
(
const
container
::
ContainerEvent
&
_Event
)
throw
(
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
_elementReplaced
(
const
container
::
ContainerEvent
&
_rEvent
)
throw
(
uno
::
RuntimeException
);
virtual
void
_disposing
(
const
lang
::
EventObject
&
_rSource
)
throw
(
uno
::
RuntimeException
,
std
::
exception
);
...
...
@@ -167,7 +168,8 @@ protected:
virtual
sal_Int8
ExecuteDrop
(
const
ExecuteDropEvent
&
_rEvt
);
// OSelectionChangeListener
virtual
void
_disposing
(
const
lang
::
EventObject
&
_rSource
)
throw
(
uno
::
RuntimeException
);
virtual
void
_disposing
(
const
lang
::
EventObject
&
_rSource
)
throw
(
uno
::
RuntimeException
,
std
::
exception
);
// OPropertyChangeListener
virtual
void
_propertyChanged
(
const
beans
::
PropertyChangeEvent
&
_rEvent
)
throw
(
uno
::
RuntimeException
);
...
...
@@ -843,7 +845,8 @@ void NavigatorTree::UserData::_elementInserted( const container::ContainerEvent&
m_pTree
->
_elementInserted
(
_rEvent
);
}
void
NavigatorTree
::
UserData
::
_elementRemoved
(
const
container
::
ContainerEvent
&
_rEvent
)
throw
(
uno
::
RuntimeException
)
void
NavigatorTree
::
UserData
::
_elementRemoved
(
const
container
::
ContainerEvent
&
_rEvent
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
m_pTree
->
_elementRemoved
(
_rEvent
);
}
...
...
@@ -853,7 +856,8 @@ void NavigatorTree::UserData::_elementReplaced( const container::ContainerEvent&
m_pTree
->
_elementReplaced
(
_rEvent
);
}
void
NavigatorTree
::
UserData
::
_disposing
(
const
lang
::
EventObject
&
_rSource
)
throw
(
uno
::
RuntimeException
)
void
NavigatorTree
::
UserData
::
_disposing
(
const
lang
::
EventObject
&
_rSource
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
m_pTree
->
_disposing
(
_rSource
);
}
...
...
sd/source/ui/unoidl/unomodule.cxx
Dosyayı görüntüle @
6fbe00f9
...
...
@@ -52,7 +52,8 @@ uno::Reference< uno::XInterface > SAL_CALL SdUnoModule_createInstance(
}
// XNotifyingDispatch
void
SAL_CALL
SdUnoModule
::
dispatchWithNotification
(
const
util
::
URL
&
aURL
,
const
uno
::
Sequence
<
beans
::
PropertyValue
>&
aArgs
,
const
uno
::
Reference
<
frame
::
XDispatchResultListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
void
SAL_CALL
SdUnoModule
::
dispatchWithNotification
(
const
util
::
URL
&
aURL
,
const
uno
::
Sequence
<
beans
::
PropertyValue
>&
aArgs
,
const
uno
::
Reference
<
frame
::
XDispatchResultListener
>&
xListener
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
// there is no guarantee, that we are holded alive during this method!
// May the outside dispatch container will be updated by a CONTEXT_CHANGED
...
...
sd/source/ui/unoidl/unomodule.hxx
Dosyayı görüntüle @
6fbe00f9
...
...
@@ -58,7 +58,8 @@ public:
{}
// XnotifyingDispatch
virtual
void
SAL_CALL
dispatchWithNotification
(
const
css
::
util
::
URL
&
URL
,
const
css
::
uno
::
Sequence
<
css
::
beans
::
PropertyValue
>&
Arguments
,
const
css
::
uno
::
Reference
<
css
::
frame
::
XDispatchResultListener
>&
Listener
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
dispatchWithNotification
(
const
css
::
util
::
URL
&
URL
,
const
css
::
uno
::
Sequence
<
css
::
beans
::
PropertyValue
>&
Arguments
,
const
css
::
uno
::
Reference
<
css
::
frame
::
XDispatchResultListener
>&
Listener
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
// XDispatch
virtual
void
SAL_CALL
dispatch
(
const
css
::
util
::
URL
&
aURL
,
const
css
::
uno
::
Sequence
<
css
::
beans
::
PropertyValue
>&
aArgs
)
throw
(
css
::
uno
::
RuntimeException
);
...
...
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