? .textwindowaccessibility.cxx.swp ? temp Index: textwindowaccessibility.cxx =================================================================== RCS file: /cvs/oo/util/svtools/source/edit/textwindowaccessibility.cxx,v retrieving revision 1.8 diff -p -r1.8 textwindowaccessibility.cxx *** textwindowaccessibility.cxx 2002/08/14 10:12:23 1.8 --- textwindowaccessibility.cxx 2002/10/11 01:38:16 *************** private: *** 422,438 **** ::rtl::OUString m_aFirstSentence; }; - // Both ::osl::Mutex and ParagraphBase implement acquire and release, and thus - // ::rtl::Reference< Paragraph > does not work. So ParagraphImpl was factored - // out and ::rtl::Reference< ParagraphImpl > is used instead. - class Paragraph: private ::osl::Mutex, public ParagraphImpl - { - public: - inline Paragraph(::rtl::Reference< Document > const & rDocument, - Paragraphs::size_type nNumber): - ParagraphImpl(rDocument, nNumber, *this) {} - }; - class Document: public ::VCLXAccessibleComponent, public ::SfxListener { public: --- 422,427 ---- *************** private: *** 679,684 **** --- 668,684 ---- ::sal_Int32 m_nVisibleBeginOffset; ::std::queue< ::TextHint > m_aParagraphNotifications; + }; + + // Both ::osl::Mutex and ParagraphBase implement acquire and release, and thus + // ::rtl::Reference< Paragraph > does not work. So ParagraphImpl was factored + // out and ::rtl::Reference< ParagraphImpl > is used instead. + class Paragraph: private ::osl::Mutex, public ParagraphImpl + { + public: + inline Paragraph(::rtl::Reference< Document > const & rDocument, + Paragraphs::size_type nNumber): + ParagraphImpl(rDocument, nNumber, *this) {} }; }