diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-11-10 12:28:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-11-10 19:10:31 +0100 |
commit | 9444c925b254cca32c08c473cc294a5f0e90881a (patch) | |
tree | e98a5fdd4125ab931d9acf7bd17e2ba7732995c5 /ucb | |
parent | 6610bfdd8c8923e85b30e364c6ea5c7abf218367 (diff) |
new loplugin:stringliteraldefine
look for
#define FOO "foo"
that can be converted into OUStringLiteral.
This is the first pass of this plugin, only doing those #define which
are local to a single compilation unit.
Change-Id: Ic8610e29ec42c36d03db5014a93c244315d5bbea
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124962
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/ftp/ftpcontent.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/ftp/ftpcontent.cxx b/ucb/source/ucp/ftp/ftpcontent.cxx index b10d6469506f..3b035681da95 100644 --- a/ucb/source/ucp/ftp/ftpcontent.cxx +++ b/ucb/source/ucp/ftp/ftpcontent.cxx @@ -557,9 +557,9 @@ Any SAL_CALL FTPContent::execute( const Command& aCommand, } } -#define FTP_FILE "application/vnd.sun.staroffice.ftp-file" +constexpr OUStringLiteral FTP_FILE = u"application/vnd.sun.staroffice.ftp-file"; -#define FTP_FOLDER "application/vnd.sun.staroffice.ftp-folder" +constexpr OUStringLiteral FTP_FOLDER = u"application/vnd.sun.staroffice.ftp-folder"; Sequence<ContentInfo > SAL_CALL FTPContent::queryCreatableContentsInfo( ) |