summaryrefslogtreecommitdiff
path: root/toolkit/source/awt/vclxaccessiblecomponent.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-05-28 11:29:08 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-05-28 11:29:08 +0000
commit0a99ae9017ca792fd41572ca0921c5849f52afe5 (patch)
tree3c1ec99b91659f2403bcb965f2026753c1022a02 /toolkit/source/awt/vclxaccessiblecomponent.cxx
parentf6bb632a79975f202f337d0814b056b9f4cf9615 (diff)
INTEGRATION: CWS vcl09 (1.45.8); FILE MERGED
2003/05/28 08:36:55 rt 1.45.8.3: RESYNC: (1.46-1.47); FILE MERGED 2003/05/13 08:12:54 hdu 1.45.8.2: RESYNC: (1.45-1.46); FILE MERGED 2003/04/30 14:48:07 ssa 1.45.8.1: #109206# use MINIMIZE/NORMALIZE events instead of ICONIFIED/RESTORED
Diffstat (limited to 'toolkit/source/awt/vclxaccessiblecomponent.cxx')
-rw-r--r--toolkit/source/awt/vclxaccessiblecomponent.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/toolkit/source/awt/vclxaccessiblecomponent.cxx b/toolkit/source/awt/vclxaccessiblecomponent.cxx
index e7ef7451644f..c3d7d536df07 100644
--- a/toolkit/source/awt/vclxaccessiblecomponent.cxx
+++ b/toolkit/source/awt/vclxaccessiblecomponent.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: vclxaccessiblecomponent.cxx,v $
*
- * $Revision: 1.47 $
+ * $Revision: 1.48 $
*
- * last change: $Author: vg $ $Date: 2003-05-22 08:48:30 $
+ * last change: $Author: vg $ $Date: 2003-05-28 12:29:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -451,13 +451,13 @@ void VCLXAccessibleComponent::ProcessWindowEvent( const VclWindowEvent& rVclWind
}
}
break;
- case VCLEVENT_WINDOW_ICONIFIED:
+ case VCLEVENT_WINDOW_MINIMIZE:
{
aNewValue <<= accessibility::AccessibleStateType::ICONIFIED;
NotifyAccessibleEvent( accessibility::AccessibleEventId::STATE_CHANGED, aOldValue, aNewValue );
}
break;
- case VCLEVENT_WINDOW_RESTORED:
+ case VCLEVENT_WINDOW_NORMALIZE:
{
aOldValue <<= accessibility::AccessibleStateType::ICONIFIED;
NotifyAccessibleEvent( accessibility::AccessibleEventId::STATE_CHANGED, aOldValue, aNewValue );