summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpdivinfo.hxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-08 00:05:32 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-08 01:21:25 -0600
commitd634ce9edb6f1df409547715a391ad2eeca99f0c (patch)
tree62a7327a3346bf4a9b70d465315b7a466b03449e /lotuswordpro/source/filter/lwpdivinfo.hxx
parent0b83c8ffdcba92be56030b1e205a030d46168cfe (diff)
use 'native' OUString api in lotuswordpro instead of macro and wrappers
Change-Id: Iccb78b59c3de9f29975d10fa4e34232cd3bf2cc3
Diffstat (limited to 'lotuswordpro/source/filter/lwpdivinfo.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpdivinfo.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpdivinfo.hxx b/lotuswordpro/source/filter/lwpdivinfo.hxx
index 43a497889072..4622e9f7eb24 100644
--- a/lotuswordpro/source/filter/lwpdivinfo.hxx
+++ b/lotuswordpro/source/filter/lwpdivinfo.hxx
@@ -144,7 +144,7 @@ inline sal_Bool LwpDivInfo::HasContents()
inline sal_Bool LwpDivInfo::IsOleDivision()
{
OUString strClassName = GetClassName();
- if (strClassName.equals(A2OUSTR(STR_OleDivisionClassName)))
+ if (strClassName == STR_OleDivisionClassName)
return sal_True;
return sal_False;
}