diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-12-06 16:50:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-12-06 19:21:21 +0100 |
commit | b1acb9c62701d8f09fafdf5b7c2b690249a277b8 (patch) | |
tree | 09816a74d80cb004f6074da763b725f53672390a /sfx2 | |
parent | 0a803c0a41f46be4019ddd2768b4be5669b7ab59 (diff) |
loplugin:external (macOS)
* OldEntry in fpicker/source/aqua/resourceprovider.mm was apparently unused ever
since it got introduced with 00657aef09d854c74fb426a935a3e8b1fc390bb0
"migrate to boost::gettext"
* impl_throwError is used from multiple TU,
connectivity/source/drivers/macab/MacabStatement.cxx just missed the relevant
#include
Change-Id: Iba131da57aa20085bb1c634ba9a3a59566070abd
Reviewed-on: https://gerrit.libreoffice.org/84653
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/shutdowniconaqua.mm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sfx2/source/appl/shutdowniconaqua.mm b/sfx2/source/appl/shutdowniconaqua.mm index 14bb2d2efeb9..4a0f61b5dcf5 100644 --- a/sfx2/source/appl/shutdowniconaqua.mm +++ b/sfx2/source/appl/shutdowniconaqua.mm @@ -122,6 +122,8 @@ static NSString* getAutoreleasedString( const OUString& rStr ) return [[[NSString alloc] initWithCharacters: reinterpret_cast<unichar const *>(rStr.getStr()) length: rStr.getLength()] autorelease]; } +namespace { + struct RecentMenuEntry { OUString aURL; @@ -142,6 +144,8 @@ class RecentFilesStringLength : public ::cppu::WeakImplHelper< css::util::XStrin } }; +} + @interface RecentMenuDelegate : NSObject { std::vector< RecentMenuEntry >* m_pRecentFilesItems; |