diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2013-01-15 21:32:31 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2013-01-15 21:38:08 +0100 |
commit | 30798fbedb93bca8988ca3a0f626dedc3df052d3 (patch) | |
tree | 57241d789de82792150f69f2cd8389be54744b47 /sw | |
parent | a9470e9b3017ef8c79f38021b3e7823dbe24a93e (diff) |
sw: kill no longer needed ASCII_STR() define
Change-Id: Id7f221ba96594502d04bba05375cba03b0f36970
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/config/optcomp.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sw/source/ui/config/optcomp.cxx b/sw/source/ui/config/optcomp.cxx index 8fe63fd682a1..6d562702ecb5 100644 --- a/sw/source/ui/config/optcomp.cxx +++ b/sw/source/ui/config/optcomp.cxx @@ -39,12 +39,10 @@ using namespace ::com::sun::star::beans; using namespace ::com::sun::star::document; using namespace ::com::sun::star::uno; -using ::rtl::OUString; using namespace ::std; -#define ASCII_STR(s) OUString( RTL_CONSTASCII_USTRINGPARAM( s ) ) #define DEFAULT_ENTRY COMPATIBILITY_DEFAULT_NAME -#define USER_ENTRY ASCII_STR( "_user" ) +#define USER_ENTRY "_user" #define BUTTON_BORDER 2 // struct CompatibilityItem ---------------------------------------------- |