INTEGRATION: CWS sdwarningsbegone (1.9.36); FILE MERGED

2006/11/22 15:00:12 cl 1.9.36.2: RESYNC: (1.9-1.10); FILE MERGED
2006/11/22 12:41:40 cl 1.9.36.1: #i69285# warning free code changes for unxlngi6.pro
This commit is contained in:
Kurt Zenker 2006-12-12 15:49:24 +00:00
parent 63b0df44d5
commit 1302028621

View file

@ -4,9 +4,9 @@
*
* $RCSfile: AccessibleSlideSorterView.cxx,v $
*
* $Revision: 1.10 $
* $Revision: 1.11 $
*
* last change: $Author: ihi $ $Date: 2006-11-14 14:24:05 $
* last change: $Author: kz $ $Date: 2006-12-12 16:49:24 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -194,9 +194,6 @@ AccessibleSlideSorterObject* AccessibleSlideSorterView::GetAccessibleChildImplem
return pResult;
}
void AccessibleSlideSorterView::Destroyed (void)
{
::osl::MutexGuard aGuard (maMutex);
@ -209,10 +206,6 @@ void AccessibleSlideSorterView::Destroyed (void)
}
}
//===== XAccessible =========================================================
Reference<XAccessibleContext > SAL_CALL
@ -222,9 +215,6 @@ Reference<XAccessibleContext > SAL_CALL
return this;
}
//===== XAccessibleContext ==================================================
sal_Int32 SAL_CALL AccessibleSlideSorterView::getAccessibleChildCount (void)
@ -235,9 +225,6 @@ sal_Int32 SAL_CALL AccessibleSlideSorterView::getAccessibleChildCount (void)
return mpImpl->GetVisibleChildCount();
}
Reference<XAccessible > SAL_CALL
AccessibleSlideSorterView::getAccessibleChild (sal_Int32 nIndex)
throw (lang::IndexOutOfBoundsException, RuntimeException)
@ -251,9 +238,6 @@ Reference<XAccessible > SAL_CALL
return mpImpl->GetVisibleChild(nIndex);
}
Reference<XAccessible > SAL_CALL AccessibleSlideSorterView::getAccessibleParent (void)
throw (uno::RuntimeException)
{
@ -271,9 +255,6 @@ Reference<XAccessible > SAL_CALL AccessibleSlideSorterView::getAccessibleParent
return xParent;
}
sal_Int32 SAL_CALL AccessibleSlideSorterView::getAccessibleIndexInParent (void)
throw (uno::RuntimeException)
{
@ -799,9 +780,6 @@ sal_Bool AccessibleSlideSorterView::IsDisposed (void)
return (rBHelper.bDisposed || rBHelper.bInDispose);
}
//===== AccessibleSlideSorterView::Implementation =============================
AccessibleSlideSorterView::Implementation::Implementation (
@ -971,7 +949,7 @@ void AccessibleSlideSorterView::Implementation::ReleaseListeners (void)
void AccessibleSlideSorterView::Implementation::Notify (
SfxBroadcaster& rBroadcaster,
SfxBroadcaster&,
const SfxHint& rHint)
{
if (rHint.ISA(SdrHint))
@ -989,6 +967,8 @@ void AccessibleSlideSorterView::Implementation::Notify (
Any());
}
break;
default:
break;
}
}
else if (rHint.ISA(sd::ViewShellHint))
@ -1008,6 +988,8 @@ void AccessibleSlideSorterView::Implementation::Notify (
Any(),
Any());
break;
default:
break;
}
}
}
@ -1042,7 +1024,7 @@ IMPL_LINK(AccessibleSlideSorterView::Implementation, WindowEventListener, VclWin
IMPL_LINK(AccessibleSlideSorterView::Implementation, SelectionChangeListener, void*, pDummy)
IMPL_LINK(AccessibleSlideSorterView::Implementation, SelectionChangeListener, void*, EMPTYARG )
{
mrAccessibleSlideSorter.FireAccessibleEvent(
AccessibleEventId::SELECTION_CHANGED,
@ -1054,7 +1036,7 @@ IMPL_LINK(AccessibleSlideSorterView::Implementation, SelectionChangeListener, vo
IMPL_LINK(AccessibleSlideSorterView::Implementation, FocusChangeListener, void*, pDummy)
IMPL_LINK(AccessibleSlideSorterView::Implementation, FocusChangeListener, void*, EMPTYARG )
{
sal_Int32 nNewFocusedIndex (mrController.GetFocusManager().GetFocusedPageIndex());