summaryrefslogtreecommitdiff
path: root/basctl/source/accessibility
diff options
context:
space:
mode:
authorMikhail Voytenko <mav@openoffice.org>2011-01-14 11:16:25 +0100
committerMikhail Voytenko <mav@openoffice.org>2011-01-14 11:16:25 +0100
commita2242be9c3551310027b341db53164ebd78bc6c8 (patch)
tree75bf8d14bccac43b171488c6e95cd3a31f4031e0 /basctl/source/accessibility
parenta6569df130ac16327e4f52498e9925e16f56bf10 (diff)
removetooltypes01: #i112600# remove tooltypes from basctl
Diffstat (limited to 'basctl/source/accessibility')
-rw-r--r--basctl/source/accessibility/accessibledialogwindow.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/basctl/source/accessibility/accessibledialogwindow.cxx b/basctl/source/accessibility/accessibledialogwindow.cxx
index c774f2d166eb..2d21620a659a 100644
--- a/basctl/source/accessibility/accessibledialogwindow.cxx
+++ b/basctl/source/accessibility/accessibledialogwindow.cxx
@@ -130,9 +130,9 @@ AccessibleDialogWindow::AccessibleDialogWindow( DialogWindow* pDialogWindow )
SdrPage* pSdrPage = m_pDialogWindow->GetPage();
if ( pSdrPage )
{
- ULONG nCount = pSdrPage->GetObjCount();
+ sal_uLong nCount = pSdrPage->GetObjCount();
- for ( ULONG i = 0; i < nCount; ++i )
+ for ( sal_uLong i = 0; i < nCount; ++i )
{
SdrObject* pObj = pSdrPage->GetObj( i );
DlgEdObj* pDlgEdObj = PTR_CAST( DlgEdObj, pObj );
@@ -357,7 +357,7 @@ void AccessibleDialogWindow::UpdateChildren()
SdrPage* pSdrPage = m_pDialogWindow->GetPage();
if ( pSdrPage )
{
- for ( ULONG i = 0, nCount = pSdrPage->GetObjCount(); i < nCount; ++i )
+ for ( sal_uLong i = 0, nCount = pSdrPage->GetObjCount(); i < nCount; ++i )
{
SdrObject* pObj = pSdrPage->GetObj( i );
DlgEdObj* pDlgEdObj = PTR_CAST( DlgEdObj, pObj );
@@ -751,7 +751,7 @@ sal_Int32 AccessibleDialogWindow::getAccessibleIndexInParent( ) throw (RuntimeE
Window* pParent = m_pDialogWindow->GetAccessibleParentWindow();
if ( pParent )
{
- for ( USHORT i = 0, nCount = pParent->GetAccessibleChildWindowCount(); i < nCount; ++i )
+ for ( sal_uInt16 i = 0, nCount = pParent->GetAccessibleChildWindowCount(); i < nCount; ++i )
{
Window* pChild = pParent->GetAccessibleChildWindow( i );
if ( pChild == static_cast< Window* >( m_pDialogWindow ) )
@@ -1114,7 +1114,7 @@ void AccessibleDialogWindow::deselectAccessibleChild( sal_Int32 nChildIndex ) th
{
SdrPageView* pPgView = pSdrView->GetSdrPageView();
if ( pPgView )
- pSdrView->MarkObj( pDlgEdObj, pPgView, TRUE );
+ pSdrView->MarkObj( pDlgEdObj, pPgView, sal_True );
}
}
}