From 35fe7d4365f0fd9e118d17bb4b579cf303cd6720 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 23 Mar 2012 21:20:04 +0000 Subject: ditch collection of static OUStrings --- svtools/source/config/accessibilityoptions.cxx | 20 ++++++++++---------- 1 file 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 --------------------------------------------- -- cgit