Kaydet (Commit) 3e9619c7 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:constparams: embedserv (clang-cl)

Change-Id: I6faa8df32e57a846968423cfbe026ce96f6ca7e8
üst 287386df
......@@ -26,7 +26,7 @@
#include <guid.hxx>
wchar_t const * getStorageTypeFromGUID_Impl( GUID* guid )
wchar_t const * getStorageTypeFromGUID_Impl( GUID const * guid )
{
if ( *guid == OID_WriterTextServer )
return L"soffice.StarWriterDocument.6";
......@@ -61,7 +61,7 @@ wchar_t const * getStorageTypeFromGUID_Impl( GUID* guid )
return L"";
}
o3tl::u16string_view getServiceNameFromGUID_Impl( GUID* guid )
o3tl::u16string_view getServiceNameFromGUID_Impl( GUID const * guid )
{
if ( *guid == OID_WriterTextServer )
return u"com.sun.star.comp.Writer.TextDocument";
......@@ -96,7 +96,7 @@ o3tl::u16string_view getServiceNameFromGUID_Impl( GUID* guid )
return u"";
}
OUString getFilterNameFromGUID_Impl( GUID* guid )
OUString getFilterNameFromGUID_Impl( GUID const * guid )
{
if ( *guid == OID_WriterTextServer )
return OUString( "StarOffice XML (Writer)" );
......
......@@ -27,11 +27,11 @@
#include <common.h>
OUString getFilterNameFromGUID_Impl( GUID* );
OUString getFilterNameFromGUID_Impl( GUID const * );
o3tl::u16string_view getServiceNameFromGUID_Impl( GUID* );
o3tl::u16string_view getServiceNameFromGUID_Impl( GUID const * );
wchar_t const * getStorageTypeFromGUID_Impl( GUID* guid );
wchar_t const * getStorageTypeFromGUID_Impl( GUID const * guid );
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment