summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-08 14:31:26 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-08 14:31:26 +0000
commit0b96c434ad3d793b842e936d4b2682084f056b22 (patch)
tree3ae5566c8cd97c6d00600cbb7e310c08ab5f3487 /toolkit
parent20b478ff18e095dd7f26459e63a758e4896cf45a (diff)
INTEGRATION: CWS toolkit01 (1.14.72); FILE MERGED
2005/02/16 16:20:11 mt 1.14.72.2: correct exception for reschedule() 2005/02/16 13:53:50 mt 1.14.72.1: #i34390# XReschedule
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/inc/toolkit/awt/vclxtoolkit.hxx22
1 files changed, 16 insertions, 6 deletions
diff --git a/toolkit/inc/toolkit/awt/vclxtoolkit.hxx b/toolkit/inc/toolkit/awt/vclxtoolkit.hxx
index fff18a93423b..9a2f34270ddd 100644
--- a/toolkit/inc/toolkit/awt/vclxtoolkit.hxx
+++ b/toolkit/inc/toolkit/awt/vclxtoolkit.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: vclxtoolkit.hxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: obo $ $Date: 2004-07-05 15:53:58 $
+ * last change: $Author: vg $ $Date: 2005-03-08 15:31:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -80,9 +80,12 @@
#ifndef _COM_SUN_STAR_AWT_XEXTENDEDTOOLKIT_HPP_
#include <com/sun/star/awt/XExtendedToolkit.hpp>
#endif
+#ifndef _COM_SUN_STAR_AWT_XRESCHEDULE_HPP_
+#include <com/sun/star/awt/XReschedule.hpp>
+#endif
-#ifndef _CPPUHELPER_COMPBASE5_HXX_
-#include <cppuhelper/compbase5.hxx>
+#ifndef _CPPUHELPER_COMPBASE6_HXX_
+#include <cppuhelper/compbase6.hxx>
#endif
#ifndef _CPPUHELPER_INTERFACECONTAINER_HXX_
#include "cppuhelper/interfacecontainer.hxx"
@@ -134,12 +137,13 @@ protected:
};
class VCLXToolkit : public VCLXToolkit_Impl,
- public cppu::WeakComponentImplHelper5<
+ public cppu::WeakComponentImplHelper6<
::com::sun::star::awt::XToolkit,
::com::sun::star::lang::XServiceInfo,
::com::sun::star::awt::XSystemChildFactory,
::com::sun::star::awt::XDataTransferProviderAccess,
- ::com::sun::star::awt::XExtendedToolkit >
+ ::com::sun::star::awt::XExtendedToolkit,
+ ::com::sun::star::awt::XReschedule >
{
::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::clipboard::XClipboard > mxClipboard;
::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::clipboard::XClipboard > mxSelection;
@@ -256,6 +260,12 @@ public:
::com::sun::star::uno::Reference<
::com::sun::star::uno::XInterface > const & source)
throw (::com::sun::star::uno::RuntimeException);
+
+ // ::com::sun::star::awt::XReschedule:
+ virtual void SAL_CALL reschedule()
+ throw (::com::sun::star::uno::RuntimeException);
+
+
};
#endif // _TOOLKIT_AWT_VCLXTOOLKIT_HXX_