summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2017-01-02 10:34:54 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2017-01-02 12:33:34 +0000
commit20abf5f66b77bf0975eb93cb291af7ea79a45089 (patch)
treef65cbe65948df6f90c4f6c116de5e607c0e434ad /starmath
parent62a97e6a561ce65e88d4c537a1b82c336f012722 (diff)
starmath: Assert that GetDoc() is non-null here
Change-Id: I694f42a5bf2917e99bdf77d3cf7122cf1bb920ae Reviewed-on: https://gerrit.libreoffice.org/32596 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'starmath')
-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 df0edfcf7ba3..e04640009092 100644
--- a/starmath/source/view.cxx
+++ b/starmath/source/view.cxx
@@ -1305,7 +1305,7 @@ void SmViewShell::SetStatusText(const OUString& rText)
void SmViewShell::ShowError(const SmErrorDesc* pErrorDesc)
{
- SAL_WARN_IF( !GetDoc(), "starmath", "Document missing" );
+ assert(GetDoc());
if (pErrorDesc || nullptr != (pErrorDesc = GetDoc()->GetParser().GetError(0)) )
{
SetStatusText( pErrorDesc->m_aText );
@@ -1316,7 +1316,7 @@ void SmViewShell::ShowError(const SmErrorDesc* pErrorDesc)
void SmViewShell::NextError()
{
- SAL_WARN_IF( !GetDoc(), "starmath", "Document missing" );
+ assert(GetDoc());
const SmErrorDesc *pErrorDesc = GetDoc()->GetParser().NextError();
if (pErrorDesc)
@@ -1325,7 +1325,7 @@ void SmViewShell::NextError()
void SmViewShell::PrevError()
{
- SAL_WARN_IF( !GetDoc(), "starmath", "Document missing" );
+ assert(GetDoc());
const SmErrorDesc *pErrorDesc = GetDoc()->GetParser().PrevError();
if (pErrorDesc)