summaryrefslogtreecommitdiff
path: root/linguistic/source/gciterator.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'linguistic/source/gciterator.hxx')
-rw-r--r--linguistic/source/gciterator.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/linguistic/source/gciterator.hxx b/linguistic/source/gciterator.hxx
index 18984d398165..e25b15a96226 100644
--- a/linguistic/source/gciterator.hxx
+++ b/linguistic/source/gciterator.hxx
@@ -29,7 +29,6 @@
#include <com/sun/star/util/XChangesBatch.hpp>
#include <cppuhelper/implbase.hxx>
-#include <cppuhelper/weakref.hxx>
#include <osl/mutex.hxx>
#include <osl/conditn.hxx>
#include <osl/thread.h>
@@ -52,7 +51,7 @@ struct FPEntry
css::uno::Reference< css::text::XFlatParagraphIterator > m_xParaIterator;
// flat paragraph
- css::uno::WeakReference< css::text::XFlatParagraph > m_xPara;
+ css::uno::Reference< css::text::XFlatParagraph > m_xPara;
// document ID to identify different documents
OUString m_aDocId;
@@ -126,8 +125,8 @@ class GrammarCheckingIterator:
OUString GetOrCreateDocId( const css::uno::Reference< css::lang::XComponent > &xComp );
void AddEntry(
- const css::uno::WeakReference< css::text::XFlatParagraphIterator >& xFlatParaIterator,
- const css::uno::WeakReference< css::text::XFlatParagraph >& xFlatPara,
+ const css::uno::Reference< css::text::XFlatParagraphIterator >& xFlatParaIterator,
+ const css::uno::Reference< css::text::XFlatParagraph >& xFlatPara,
const OUString &rDocId, sal_Int32 nStartIndex, bool bAutomatic );
void ProcessResult( const css::linguistic2::ProofreadingResult &rRes,