diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-01-28 16:09:25 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-01-28 16:09:25 +0100 |
commit | cc5af8f131199e62fd6a8b7f1c1b0dfa78b3f24d (patch) | |
tree | daffdfeff2680200680a66d1adf6d1c85590bb85 /sfx2 | |
parent | 332c4b91ae2f3e0b1a78a3abff12252ad4933574 (diff) |
Replace suitable equalsAscii calls with equalsAsciiL.
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/layout/factory.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/layout/factory.cxx b/sfx2/source/layout/factory.cxx index 1ac60b2246ce..a5a00227eecf 100644 --- a/sfx2/source/layout/factory.cxx +++ b/sfx2/source/layout/factory.cxx @@ -58,7 +58,7 @@ SAL_DLLPUBLIC_EXPORT Window* CreateWindow (VCLXWindow** vcl, OUString const& nam { ; } - else if (name.equalsAscii ("sfxmodelessdialog")) + else if (name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("sfxmodelessdialog"))) { window = new SfxModelessDialog_unprotect (parent, ImplGetWinBits (attributes, 0)); *vcl = new layoutimpl::VCLXDialog (); |