summaryrefslogtreecommitdiff
path: root/starmath/qa/cppunit
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/qa/cppunit
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/qa/cppunit')
-rw-r--r--starmath/qa/cppunit/test_starmath.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/starmath/qa/cppunit/test_starmath.cxx b/starmath/qa/cppunit/test_starmath.cxx
index 06208654cebc..2a19ac6d5fae 100644
--- a/starmath/qa/cppunit/test_starmath.cxx
+++ b/starmath/qa/cppunit/test_starmath.cxx
@@ -149,17 +149,17 @@ void Test::editFailure()
const SmErrorDesc *pErrorDesc = m_xDocShRef->GetParser().NextError();
CPPUNIT_ASSERT_MESSAGE("Should be a PE_COLOR_EXPECTED",
- pErrorDesc && pErrorDesc->Type == PE_COLOR_EXPECTED);
+ pErrorDesc && pErrorDesc->m_eType == PE_COLOR_EXPECTED);
pErrorDesc = m_xDocShRef->GetParser().PrevError();
CPPUNIT_ASSERT_MESSAGE("Should be a PE_UNEXPECTED_CHAR",
- pErrorDesc && pErrorDesc->Type == PE_UNEXPECTED_CHAR);
+ pErrorDesc && pErrorDesc->m_eType == PE_UNEXPECTED_CHAR);
pErrorDesc = m_xDocShRef->GetParser().PrevError();
CPPUNIT_ASSERT_MESSAGE("Should be a PE_RGROUP_EXPECTED",
- pErrorDesc && pErrorDesc->Type == PE_RGROUP_EXPECTED);
+ pErrorDesc && pErrorDesc->m_eType == PE_RGROUP_EXPECTED);
const SmErrorDesc *pLastErrorDesc = m_xDocShRef->GetParser().PrevError();