summaryrefslogtreecommitdiff
path: root/toolkit/source/layout
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-01-28 16:12:59 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-01-28 16:13:08 +0100
commit692e8cb2d6252ebf48956c210a3f425f2b794813 (patch)
tree634c59d460e72e2ef5c0777046fec5a146ce4feb /toolkit/source/layout
parentfe00ba0b8ba898bb367d896d88ea4f0cf36c21ea (diff)
Replace suitable equalsAscii calls with equalsAsciiL.
Diffstat (limited to 'toolkit/source/layout')
-rw-r--r--toolkit/source/layout/core/helper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/source/layout/core/helper.cxx b/toolkit/source/layout/core/helper.cxx
index 70d7df8fe51c..43a1a1e6e2c3 100644
--- a/toolkit/source/layout/core/helper.cxx
+++ b/toolkit/source/layout/core/helper.cxx
@@ -567,8 +567,8 @@ Window* WidgetFactory::layoutCreateWindow (VCLXWindow** component, Window *paren
window = new Window( parent, ImplGetWinBits( attributes, 0 ) );
*component = new layoutimpl::LocalizedString();
}
- else if (name.equalsAscii ("svxfontlistbox")
- || name.equalsAscii ("svxlanguagebox"))
+ else if (name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("svxfontlistbox"))
+ || name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("svxlanguagebox")))
{
window = new ListBox (parent, ImplGetWinBits (attributes, 0));
*component = new VCLXListBox ();