diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-07-02 09:33:58 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-07-02 13:45:13 +0200 |
commit | bbb35541d8e0a2b041ed05ccb23307afa5371211 (patch) | |
tree | 56eb828b4be040879542614cba71ebef26faab80 /ucb/source/ucp/file | |
parent | fdab50022519d8d794a00a3693e66bd8f3fad303 (diff) |
Upcoming improved loplugin:staticanonymous -> redundantstatic: ucb
Change-Id: Id9301e65bea34c0edd9aadab85b848117e05075e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97710
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'ucb/source/ucp/file')
-rw-r--r-- | ucb/source/ucp/file/filtask.cxx | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/ucb/source/ucp/file/filtask.cxx b/ucb/source/ucp/file/filtask.cxx index 8d839d726a57..b03f758ab038 100644 --- a/ucb/source/ucp/file/filtask.cxx +++ b/ucb/source/ucp/file/filtask.cxx @@ -116,21 +116,21 @@ TaskManager::MyProperty::MyProperty( bool theisNat // Default properties -static const OUStringLiteral Title( "Title" ); -static const OUStringLiteral CasePreservingURL( "CasePreservingURL" ); -static const OUStringLiteral IsDocument( "IsDocument" ); -static const OUStringLiteral IsFolder( "IsFolder" ); -static const OUStringLiteral DateModified( "DateModified" ); -static const OUStringLiteral Size( "Size" ); -static const OUStringLiteral IsVolume( "IsVolume" ); -static const OUStringLiteral IsRemoveable( "IsRemoveable" ); -static const OUStringLiteral IsRemote( "IsRemote" ); -static const OUStringLiteral IsCompactDisc( "IsCompactDisc" ); -static const OUStringLiteral IsFloppy( "IsFloppy" ); -static const OUStringLiteral IsHidden( "IsHidden" ); -static const OUStringLiteral ContentType( "ContentType" ); -static const OUStringLiteral IsReadOnly( "IsReadOnly" ); -static const OUStringLiteral CreatableContentsInfo( "CreatableContentsInfo" ); +const OUStringLiteral Title( "Title" ); +const OUStringLiteral CasePreservingURL( "CasePreservingURL" ); +const OUStringLiteral IsDocument( "IsDocument" ); +const OUStringLiteral IsFolder( "IsFolder" ); +const OUStringLiteral DateModified( "DateModified" ); +const OUStringLiteral Size( "Size" ); +const OUStringLiteral IsVolume( "IsVolume" ); +const OUStringLiteral IsRemoveable( "IsRemoveable" ); +const OUStringLiteral IsRemote( "IsRemote" ); +const OUStringLiteral IsCompactDisc( "IsCompactDisc" ); +const OUStringLiteral IsFloppy( "IsFloppy" ); +const OUStringLiteral IsHidden( "IsHidden" ); +const OUStringLiteral ContentType( "ContentType" ); +const OUStringLiteral IsReadOnly( "IsReadOnly" ); +const OUStringLiteral CreatableContentsInfo( "CreatableContentsInfo" ); const OUStringLiteral TaskManager::FolderContentType( "application/vnd.sun.staroffice.fsys-folder" ); const OUStringLiteral TaskManager::FileContentType( "application/vnd.sun.staroffice.fsys-file" ); |