summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-04-24 15:31:14 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-04-24 15:31:14 +0000
commit39bb43740cc233f988c9285f800d5e023a704f9a (patch)
tree117e1d845ed7b47dfb84ebf1a006fe43809a1eda /vcl
parentb198db268b4a1213184cb02acec4d5cdda6e42be (diff)
INTEGRATION: CWS uaa02 (1.26.132); FILE MERGED
2003/04/11 17:37:40 mt 1.26.132.1: #108656# Moved accessibility from drafts to final
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/unohelp.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/vcl/source/app/unohelp.cxx b/vcl/source/app/unohelp.cxx
index 8e3f16005e2b..f87abefdba41 100644
--- a/vcl/source/app/unohelp.cxx
+++ b/vcl/source/app/unohelp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: unohelp.cxx,v $
*
- * $Revision: 1.26 $
+ * $Revision: 1.27 $
*
- * last change: $Author: mt $ $Date: 2002-11-04 13:35:16 $
+ * last change: $Author: vg $ $Date: 2003-04-24 16:31:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -87,16 +87,16 @@
#include <com/sun/star/i18n/XCollator.hpp>
#endif
-#ifndef _DRAFTS_COM_SUN_STAR_AWT_XEXTENDEDTOOLKIT_HPP_
-#include <drafts/com/sun/star/awt/XExtendedToolkit.hpp>
+#ifndef _COM_SUN_STAR_AWT_XEXTENDEDTOOLKIT_HPP_
+#include <com/sun/star/awt/XExtendedToolkit.hpp>
#endif
-#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLEEVENTOBJECT_HPP_
-#include <drafts/com/sun/star/accessibility/AccessibleEventObject.hpp>
+#ifndef _COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLEEVENTOBJECT_HPP_
+#include <com/sun/star/accessibility/AccessibleEventObject.hpp>
#endif
-#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLESTATETYPE_HPP_
-#include <drafts/com/sun/star/accessibility/AccessibleStateType.hpp>
+#ifndef _COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLESTATETYPE_HPP_
+#include <com/sun/star/accessibility/AccessibleStateType.hpp>
#endif
@@ -268,20 +268,20 @@ uno::Reference < i18n::XCollator > vcl::unohelper::CreateCollator()
return aLibName;
}
-void vcl::unohelper::NotifyAccessibleStateEventGlobally( const ::drafts::com::sun::star::accessibility::AccessibleEventObject& rEventObject )
+void vcl::unohelper::NotifyAccessibleStateEventGlobally( const ::com::sun::star::accessibility::AccessibleEventObject& rEventObject )
{
- ::com::sun::star::uno::Reference< ::drafts::com::sun::star::awt::XExtendedToolkit > xExtToolkit( Application::GetVCLToolkit(), uno::UNO_QUERY );
+ ::com::sun::star::uno::Reference< ::com::sun::star::awt::XExtendedToolkit > xExtToolkit( Application::GetVCLToolkit(), uno::UNO_QUERY );
if ( xExtToolkit.is() )
{
// Only for focus events
sal_Int16 nType;
rEventObject.NewValue >>= nType;
- if ( nType == ::drafts::com::sun::star::accessibility::AccessibleStateType::FOCUSED )
+ if ( nType == ::com::sun::star::accessibility::AccessibleStateType::FOCUSED )
xExtToolkit->fireFocusGained( rEventObject.Source );
else
{
rEventObject.OldValue >>= nType;
- if ( nType == ::drafts::com::sun::star::accessibility::AccessibleStateType::FOCUSED )
+ if ( nType == ::com::sun::star::accessibility::AccessibleStateType::FOCUSED )
xExtToolkit->fireFocusLost( rEventObject.Source );
}