diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-17 22:19:34 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-17 22:19:34 +0100 |
commit | be2c955afda01680630f6988a1edcc55fd86fe22 (patch) | |
tree | fc9f84c33d576acf9e214469af6d2a64f5951570 /avmedia | |
parent | 034ad80c3451f24efa1986eee3cd195ce6e1050b (diff) |
loplugin:stringconstant
Change-Id: Ia8e65f768d47dbbec126545aa1cf859efa59cc38
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/macavf/player.mm | 2 | ||||
-rw-r--r-- | avmedia/source/macavf/window.mm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/avmedia/source/macavf/player.mm b/avmedia/source/macavf/player.mm index c573a0fe4274..bd63acaf4b43 100644 --- a/avmedia/source/macavf/player.mm +++ b/avmedia/source/macavf/player.mm @@ -362,7 +362,7 @@ uno::Reference< media::XFrameGrabber > SAL_CALL Player::createFrameGrabber() ::rtl::OUString SAL_CALL Player::getImplementationName( ) throw (uno::RuntimeException) { - return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( AVMEDIA_MACAVF_PLAYER_IMPLEMENTATIONNAME ) ); + return ::rtl::OUString( AVMEDIA_MACAVF_PLAYER_IMPLEMENTATIONNAME ); } diff --git a/avmedia/source/macavf/window.mm b/avmedia/source/macavf/window.mm index 805ee2634107..b1c64d8088ce 100644 --- a/avmedia/source/macavf/window.mm +++ b/avmedia/source/macavf/window.mm @@ -268,7 +268,7 @@ void SAL_CALL Window::removeEventListener( const uno::Reference< lang::XEventLis ::rtl::OUString SAL_CALL Window::getImplementationName( ) throw (uno::RuntimeException) { - return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( AVMEDIA_MACAVF_WINDOW_IMPLEMENTATIONNAME ) ); + return ::rtl::OUString( AVMEDIA_MACAVF_WINDOW_IMPLEMENTATIONNAME ); } |