diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 12:33:18 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 12:33:18 +0100 |
commit | 27219b16359bc975be4cc04bf2d0ab167f30c061 (patch) | |
tree | 1d271493e06de2b9ccbd6d8f53f3ec1dde694b6a /toolkit/source/controls/dialogcontrol.cxx | |
parent | 47931f8fc3c1202509e6bbb2cd670d4defeb8967 (diff) |
loplugin:stringconstant: elide explicit ctor usage (manually due to macros)
Change-Id: Ib1a38d0f19ce7cab596fc32b2db0560dbeabe4ea
Diffstat (limited to 'toolkit/source/controls/dialogcontrol.cxx')
-rw-r--r-- | toolkit/source/controls/dialogcontrol.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/source/controls/dialogcontrol.cxx b/toolkit/source/controls/dialogcontrol.cxx index 1cb7127c334f..005984c9ea15 100644 --- a/toolkit/source/controls/dialogcontrol.cxx +++ b/toolkit/source/controls/dialogcontrol.cxx @@ -65,9 +65,9 @@ using namespace ::com::sun::star::container; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::util; -#define PROPERTY_DIALOGSOURCEURL OUString( "DialogSourceURL" ) -#define PROPERTY_IMAGEURL OUString( "ImageURL" ) -#define PROPERTY_GRAPHIC OUString( "Graphic" ) +#define PROPERTY_DIALOGSOURCEURL "DialogSourceURL" +#define PROPERTY_IMAGEURL "ImageURL" +#define PROPERTY_GRAPHIC "Graphic" // we probably will need both a hash of control models and hash of controls |