diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-21 18:07:00 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-21 18:07:00 +0100 |
commit | 1424d020e162b82a4147e17baad8ef18ea34d3e0 (patch) | |
tree | 3e28a68077bbdfff6fedb244024d074847317f7b | |
parent | 28aaa27438fb3a743792ce821ba1f523a5d9947f (diff) |
loplugin:staticcall
Change-Id: I2ff2d5a2a1423b39f960f9bdc8893cf2bb69b88b
-rw-r--r-- | starmath/source/dialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx index 9a2f2a078e1e..06475aa0d639 100644 --- a/starmath/source/dialog.cxx +++ b/starmath/source/dialog.cxx @@ -151,7 +151,7 @@ void SetFontStyle(const OUString &rStyleName, vcl::Font &rFont) for (i = 0; i < SmFontStyles::GetCount(); ++i) if (rStyleName == rStyles.GetStyleName(i)) break; - assert(i < rStyles.GetCount() && "style-name unknown"); + assert(i < SmFontStyles::GetCount() && "style-name unknown"); nIndex = i; } |