summaryrefslogtreecommitdiff
path: root/sw/source/ui/misc/glossary.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/misc/glossary.cxx')
-rw-r--r--sw/source/ui/misc/glossary.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/misc/glossary.cxx b/sw/source/ui/misc/glossary.cxx
index 3b62c88e7ee2..4a6f61d0a953 100644
--- a/sw/source/ui/misc/glossary.cxx
+++ b/sw/source/ui/misc/glossary.cxx
@@ -1095,8 +1095,8 @@ void SwGlossaryDlg::ResumeShowAutoText()
m_xAutoText = text::AutoTextContainer::create( comphelper::getProcessComponentContext() );
}
- uno::Reference< XTextCursor > & xCrsr = pExampleFrame->GetTextCursor();
- if(xCrsr.is())
+ uno::Reference< XTextCursor > & xCursor = pExampleFrame->GetTextCursor();
+ if(xCursor.is())
{
if (!sShortName.isEmpty())
{
@@ -1108,7 +1108,7 @@ void SwGlossaryDlg::ResumeShowAutoText()
uno::Any aEntry(xGroup->getByName(uShortName));
uno::Reference< XAutoTextEntry > xEntry;
aEntry >>= xEntry;
- uno::Reference< XTextRange > xRange(xCrsr, uno::UNO_QUERY);
+ uno::Reference< XTextRange > xRange(xCursor, uno::UNO_QUERY);
xEntry->applyTo(xRange);
}
}