diff options
Diffstat (limited to 'cui/source/dialogs')
-rw-r--r-- | cui/source/dialogs/colorpicker.cxx | 2 | ||||
-rw-r--r-- | cui/source/dialogs/hlinettp.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/dialogs/colorpicker.cxx b/cui/source/dialogs/colorpicker.cxx index 6b7142f2a85b..e96037e747df 100644 --- a/cui/source/dialogs/colorpicker.cxx +++ b/cui/source/dialogs/colorpicker.cxx @@ -1209,7 +1209,7 @@ private: OUString ColorPicker_getImplementationName() { - return OUString( "com.sun.star.cui.ColorPicker" ); + return "com.sun.star.cui.ColorPicker"; } Reference< XInterface > ColorPicker_createInstance( Reference< XComponentContext > const & ) diff --git a/cui/source/dialogs/hlinettp.cxx b/cui/source/dialogs/hlinettp.cxx index a2bae6bd1ce2..4867a43bbe00 100644 --- a/cui/source/dialogs/hlinettp.cxx +++ b/cui/source/dialogs/hlinettp.cxx @@ -287,8 +287,8 @@ void SvxHyperlinkInternetTp::RemoveImproperProtocol(const OUString& aProperSchem OUString SvxHyperlinkInternetTp::GetSchemeFromButtons() const { if( m_xRbtLinktypFTP->get_active() ) - return OUString(INET_FTP_SCHEME); - return OUString(INET_HTTP_SCHEME); + return INET_FTP_SCHEME; + return INET_HTTP_SCHEME; } INetProtocol SvxHyperlinkInternetTp::GetSmartProtocolFromButtons() const |