summaryrefslogtreecommitdiff
path: root/starmath/source/view.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-09-23 06:03:55 +0900
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-09-23 05:38:53 +0000
commit5ca4acf877834c51d896268cf3dd390903b2248b (patch)
tree057c139ca671f7541b2f4ad619971607246d5d3d /starmath/source/view.cxx
parent0ca9a3523cb2ccf97d7d13fdf4616af0dbe173d9 (diff)
starmath: Prefix members of SmErrorDesc
Change-Id: I4910561e3671f546f2e36344016e2b50fd2a70eb Reviewed-on: https://gerrit.libreoffice.org/18788 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'starmath/source/view.cxx')
-rw-r--r--starmath/source/view.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/starmath/source/view.cxx b/starmath/source/view.cxx
index a84ea4fd1746..574755ba7d84 100644
--- a/starmath/source/view.cxx
+++ b/starmath/source/view.cxx
@@ -1349,9 +1349,9 @@ void SmViewShell::ShowError(const SmErrorDesc* pErrorDesc)
SAL_WARN_IF( !GetDoc(), "starmath", "Document missing" );
if (pErrorDesc || 0 != (pErrorDesc = GetDoc()->GetParser().GetError(0)) )
{
- SetStatusText( pErrorDesc->Text );
- GetEditWindow()->MarkError( Point( pErrorDesc->pNode->GetColumn(),
- pErrorDesc->pNode->GetRow()));
+ SetStatusText( pErrorDesc->m_aText );
+ GetEditWindow()->MarkError( Point( pErrorDesc->m_pNode->GetColumn(),
+ pErrorDesc->m_pNode->GetRow()));
}
}