starmath/source/view.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 20abf5f66b77bf0975eb93cb291af7ea79a45089 Author: Takeshi Abe <t...@fixedpoint.jp> Date: Mon Jan 2 10:34:54 2017 +0900 starmath: Assert that GetDoc() is non-null here Change-Id: I694f42a5bf2917e99bdf77d3cf7122cf1bb920ae Reviewed-on: https://gerrit.libreoffice.org/32596 Tested-by: Jenkins <c...@libreoffice.org> Reviewed-by: Takeshi Abe <t...@fixedpoint.jp> diff --git a/starmath/source/view.cxx b/starmath/source/view.cxx index df0edfc..e046400 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) _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits