diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2010-12-15 07:50:23 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2010-12-15 07:50:23 +0100 |
commit | bdf4f2f0d062c9f8db4fc8881c86d52a5a99cd17 (patch) | |
tree | ba28901855f798e066042a5284cafcefe26f89af /framework | |
parent | c058db95aeb9b62b1c1e1696d488a918b427247e (diff) |
RTL_CONSTASCII_USTRINGPARAM
Diffstat (limited to 'framework')
-rw-r--r-- | framework/inc/dispatchcommands.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/inc/dispatchcommands.h b/framework/inc/dispatchcommands.h index d086a863ea4f..512cd0148801 100644 --- a/framework/inc/dispatchcommands.h +++ b/framework/inc/dispatchcommands.h @@ -43,10 +43,10 @@ namespace framework{ //_________________________________________________________________________________________________________________ -static ::rtl::OUString CMD_UNO_SHOWSTARTMODULE = ::rtl::OUString::createFromAscii(".uno:ShowStartModule"); -static ::rtl::OUString CMD_UNO_CLOSEDOC = ::rtl::OUString::createFromAscii(".uno:CloseDoc" ); -static ::rtl::OUString CMD_UNO_CLOSEWIN = ::rtl::OUString::createFromAscii(".uno:CloseWin" ); -static ::rtl::OUString CMD_UNO_CLOSEFRAME = ::rtl::OUString::createFromAscii(".uno:CloseFrame" ); +static ::rtl::OUString CMD_UNO_SHOWSTARTMODULE(RTL_CONSTASCII_USTRINGPARAM(".uno:ShowStartModule")); +static ::rtl::OUString CMD_UNO_CLOSEDOC(RTL_CONSTASCII_USTRINGPARAM(".uno:CloseDoc")); +static ::rtl::OUString CMD_UNO_CLOSEWIN(RTL_CONSTASCII_USTRINGPARAM(".uno:CloseWin")); +static ::rtl::OUString CMD_UNO_CLOSEFRAME(RTL_CONSTASCII_USTRINGPARAM(".uno:CloseFrame")); } // namespace framework |