View | Details | Raw Unified | Return to issue 114012
Collapse All | Expand All

(-)source/ui/accessibility/AccessibleSlideSorterView.cxx.orig (+10 lines)
Lines 70-75 Link Here
70
        AccessibleSlideSorterView& rAccessibleSlideSorter,
72
        AccessibleSlideSorterView& rAccessibleSlideSorter,
71
        ::sd::slidesorter::SlideSorter& rSlideSorter,
73
        ::sd::slidesorter::SlideSorter& rSlideSorter,
72
        ::Window* pWindow);
74
        ::Window* pWindow);
75
    void InitialConnectAndUpdate (void);
73
    ~Implementation (void);
76
    ~Implementation (void);
74
77
75
    void UpdateChildren (void);
78
    void UpdateChildren (void);
Lines 116-121 Link Here
116
      mpContentWindow(pContentWindow)
119
      mpContentWindow(pContentWindow)
117
{
120
{
118
	OSL_TRACE("creating AccessibleSlideSorterView");
121
	OSL_TRACE("creating AccessibleSlideSorterView");
122
    mpImpl->InitialConnectAndUpdate();
119
}
123
}
120
124
121
125
Lines 787-792 Link Here
787
      mnFocusedIndex(-1),
791
      mnFocusedIndex(-1),
788
      mbModelChangeLocked(false)
792
      mbModelChangeLocked(false)
789
{
793
{
794
}
795
796
797
798
799
void AccessibleSlideSorterView::Implementation::InitialConnectAndUpdate (void)
800
{
790
    ConnectListeners();
801
    ConnectListeners();
791
    UpdateChildren();
802
    UpdateChildren();
792
}
803
}
Lines 794-799 Link Here
794
805
795
806
796
807
808
797
AccessibleSlideSorterView::Implementation::~Implementation (void)
809
AccessibleSlideSorterView::Implementation::~Implementation (void)
798
{
810
{
799
    ReleaseListeners();
811
    ReleaseListeners();

Return to issue 114012