summaryrefslogtreecommitdiffstats
path: root/accessibility/source/extended/accessibletabbarbase.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2010-02-23 16:13:04 -0500
committerKohei Yoshida <kyoshida@novell.com>2010-02-23 16:13:04 -0500
commit2898bbb3d82e49f7c1bc5c92ccb235cd3756ab67 (patch)
tree5f34fe8449440288bf8e4d99217b6ffa101b368e /accessibility/source/extended/accessibletabbarbase.cxx
parentcalctabcolor: rebased to m71. (diff)
downloadcore-2898bbb3d82e49f7c1bc5c92ccb235cd3756ab67.tar.gz
core-2898bbb3d82e49f7c1bc5c92ccb235cd3756ab67.zip
calctabcolor: Use static constant values instead of macro define for more type safety.
Diffstat (limited to 'accessibility/source/extended/accessibletabbarbase.cxx')
-rw-r--r--accessibility/source/extended/accessibletabbarbase.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/accessibility/source/extended/accessibletabbarbase.cxx b/accessibility/source/extended/accessibletabbarbase.cxx
index 99f5a9b1c073..a4441a32b0f9 100644
--- a/accessibility/source/extended/accessibletabbarbase.cxx
+++ b/accessibility/source/extended/accessibletabbarbase.cxx
@@ -66,7 +66,7 @@ IMPL_LINK( AccessibleTabBarBase, WindowEventListener, VclSimpleEvent*, pEvent )
DBG_ASSERT( pEventWindow, "AccessibleTabBarBase::WindowEventListener: no window!" );
if( ( pWinEvent->GetId() == VCLEVENT_TABBAR_PAGEREMOVED ) &&
- ( (sal_uInt16)(sal_IntPtr) pWinEvent->GetData() == TABBAR_PAGE_NOTFOUND ) &&
+ ( (sal_uInt16)(sal_IntPtr) pWinEvent->GetData() == TabBar::PAGE_NOT_FOUND ) &&
( dynamic_cast< AccessibleTabBarPageList *> (this) != NULL ) )
{
return 0;