summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authormathias <mathias@mba-tecra>2009-10-06 12:26:34 +0200
committermathias <mathias@mba-tecra>2009-10-06 12:26:34 +0200
commit480ff1e9c430b6e4feba8c81565a3d26267681a9 (patch)
tree5d5378b3ed7ad7e9fc68b4ca6e84bcf3328f4c55 /unotools
parentf87ee64d502aec9365d98d53d5b913f6456eae6b (diff)
warnings fixed
Diffstat (limited to 'unotools')
-rw-r--r--unotools/inc/unotools/historyoptions_const.hxx2
-rw-r--r--unotools/source/config/configitem.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/unotools/inc/unotools/historyoptions_const.hxx b/unotools/inc/unotools/historyoptions_const.hxx
index c9148aeb26f8..48632b66b018 100644
--- a/unotools/inc/unotools/historyoptions_const.hxx
+++ b/unotools/inc/unotools/historyoptions_const.hxx
@@ -34,7 +34,7 @@
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
-#include "precompiled_svtools.hxx"
+#include "precompiled_unotools.hxx"
#ifndef INCLUDE_CONFIGITEMS_HISTORYOPTIONS_CONST_HXX
#define INCLUDE_CONFIGITEMS_HISTORYOPTIONS_CONST_HXX
diff --git a/unotools/source/config/configitem.cxx b/unotools/source/config/configitem.cxx
index 944ea0535a93..3170fae25a5d 100644
--- a/unotools/source/config/configitem.cxx
+++ b/unotools/source/config/configitem.cxx
@@ -104,7 +104,7 @@ namespace utl{
virtual void SAL_CALL disposing( const EventObject& Source ) throw(RuntimeException);
//XAsyncCallback
- virtual void SAL_CALL notify ( const Any& rData );
+ virtual void SAL_CALL notify ( const Any& rData ) throw(RuntimeException);
};
/* -----------------------------12.02.01 11:38--------------------------------
@@ -222,7 +222,7 @@ void ConfigChangeListener_Impl::changesOccurred( const ChangesEvent& rEvent ) th
}
}
-void ConfigChangeListener_Impl::notify ( const Any& rData )
+void ConfigChangeListener_Impl::notify ( const Any& rData ) throw(RuntimeException)
{
Sequence<OUString> aChangedNames;
if ( (rData >>= aChangedNames) && pParent )