summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-03-23 21:20:04 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-03-26 12:18:07 +0100
commit35fe7d4365f0fd9e118d17bb4b579cf303cd6720 (patch)
tree1ab265d3f8310b0866bf9c39ca077f5ef92478b3 /svtools
parent2770031b578debbddc7cdd3931f34f86af68b687 (diff)
ditch collection of static OUStrings
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/config/accessibilityoptions.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/svtools/source/config/accessibilityoptions.cxx b/svtools/source/config/accessibilityoptions.cxx
index 9ff94c4b8b20..2194e794305c 100644
--- a/svtools/source/config/accessibilityoptions.cxx
+++ b/svtools/source/config/accessibilityoptions.cxx
@@ -56,16 +56,16 @@ namespace css = com::sun::star;
namespace
{
- static const ::rtl::OUString s_sAccessibility(RTL_CONSTASCII_USTRINGPARAM("org.openoffice.Office.Common/Accessibility"));
- static const ::rtl::OUString s_sAutoDetectSystemHC(RTL_CONSTASCII_USTRINGPARAM("AutoDetectSystemHC"));
- static const ::rtl::OUString s_sIsForPagePreviews(RTL_CONSTASCII_USTRINGPARAM("IsForPagePreviews"));
- static const ::rtl::OUString s_sIsHelpTipsDisappear(RTL_CONSTASCII_USTRINGPARAM("IsHelpTipsDisappear"));
- static const ::rtl::OUString s_sHelpTipSeconds(RTL_CONSTASCII_USTRINGPARAM("HelpTipSeconds"));
- static const ::rtl::OUString s_sIsAllowAnimatedGraphics(RTL_CONSTASCII_USTRINGPARAM("IsAllowAnimatedGraphics"));
- static const ::rtl::OUString s_sIsAllowAnimatedText(RTL_CONSTASCII_USTRINGPARAM("IsAllowAnimatedText"));
- static const ::rtl::OUString s_sIsAutomaticFontColor(RTL_CONSTASCII_USTRINGPARAM("IsAutomaticFontColor"));
- static const ::rtl::OUString s_sIsSystemFont(RTL_CONSTASCII_USTRINGPARAM("IsSystemFont"));
- static const ::rtl::OUString s_sIsSelectionInReadonly(RTL_CONSTASCII_USTRINGPARAM("IsSelectionInReadonly"));
+ const char s_sAccessibility[] = "org.openoffice.Office.Common/Accessibility";
+ const char s_sAutoDetectSystemHC[] = "AutoDetectSystemHC";
+ const char s_sIsForPagePreviews[] = "IsForPagePreviews";
+ const char s_sIsHelpTipsDisappear[] = "IsHelpTipsDisappear";
+ const char s_sHelpTipSeconds[] = "HelpTipSeconds";
+ const char s_sIsAllowAnimatedGraphics[] = "IsAllowAnimatedGraphics";
+ const char s_sIsAllowAnimatedText[] = "IsAllowAnimatedText";
+ const char s_sIsAutomaticFontColor[] = "IsAutomaticFontColor";
+ const char s_sIsSystemFont[] = "IsSystemFont";
+ const char s_sIsSelectionInReadonly[] = "IsSelectionInReadonly";
}
// class SvtAccessibilityOptions_Impl ---------------------------------------------