summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-08 14:31:42 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-08 14:31:42 +0000
commit7e8729e13ed5515b7acbd3c8b0f203dd715b4215 (patch)
treeed5117d99b0165c6c4efea1874c7cf3656cd1764 /toolkit
parent0b96c434ad3d793b842e936d4b2682084f056b22 (diff)
INTEGRATION: CWS toolkit01 (1.41.2); FILE MERGED
2005/02/16 16:19:57 mt 1.41.2.2: correct exception for reschedule() 2005/02/16 13:53:04 mt 1.41.2.1: #i34390# XReschedule
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/awt/vclxtoolkit.cxx21
1 files changed, 16 insertions, 5 deletions
diff --git a/toolkit/source/awt/vclxtoolkit.cxx b/toolkit/source/awt/vclxtoolkit.cxx
index 75468b84bef3..99c10267eb06 100644
--- a/toolkit/source/awt/vclxtoolkit.cxx
+++ b/toolkit/source/awt/vclxtoolkit.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: vclxtoolkit.cxx,v $
*
- * $Revision: 1.41 $
+ * $Revision: 1.42 $
*
- * last change: $Author: rt $ $Date: 2005-01-31 13:10:04 $
+ * last change: $Author: vg $ $Date: 2005-03-08 15:31:42 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -569,11 +569,13 @@ static void SAL_CALL ToolkitWorkerFunction( void* pArgs )
// contructor, which might initialize VCL
VCLXToolkit::VCLXToolkit( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > & rSMgr ):
- cppu::WeakComponentImplHelper5<
- ::com::sun::star::awt::XToolkit, ::com::sun::star::lang::XServiceInfo,
+ 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 >( GetMutex() ),
+ ::com::sun::star::awt::XExtendedToolkit,
+ ::com::sun::star::awt::XReschedule>( GetMutex() ),
m_aTopWindowListeners(rBHelper.rMutex),
m_aKeyHandlers(rBHelper.rMutex),
m_aFocusListeners(rBHelper.rMutex),
@@ -1644,3 +1646,12 @@ void VCLXToolkit::callFocusListeners(::VclSimpleEvent const * pEvent,
}
}
}
+
+// css::awt::XReschedule:
+
+void SAL_CALL VCLXToolkit::reschedule()
+ throw (::com::sun::star::uno::RuntimeException)
+{
+ Application::Reschedule();
+}
+