summaryrefslogtreecommitdiff
path: root/vcl/osx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-12-14 09:07:33 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-12-15 08:48:12 +0100
commitf97125829c5c0733af9fef58ce73ac712a85aeb0 (patch)
treee99766144316faf05536d291fe94d015ad5b3447 /vcl/osx
parent5f4b126f74b1fa85f99a0ee3dfdf45368b6a1bb7 (diff)
loplugin:salcall (macOS)
Change-Id: I297ac09358ce948acae9b73e8ed605964520c73b Reviewed-on: https://gerrit.libreoffice.org/46437 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/osx')
-rw-r--r--vcl/osx/HtmlFmtFlt.cxx2
-rw-r--r--vcl/osx/a11yfocuslistener.cxx2
-rw-r--r--vcl/osx/a11yfocuslistener.hxx2
-rw-r--r--vcl/osx/saldata.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/vcl/osx/HtmlFmtFlt.cxx b/vcl/osx/HtmlFmtFlt.cxx
index 7208c67616e7..1cd679c2e8d3 100644
--- a/vcl/osx/HtmlFmtFlt.cxx
+++ b/vcl/osx/HtmlFmtFlt.cxx
@@ -78,7 +78,7 @@ const std::string TAG_END_HTML = std::string("</html>");
const std::string TAG_BODY = std::string("<body");
const std::string TAG_END_BODY = std::string("</body");
-Sequence<sal_Int8> SAL_CALL TextHtmlToHTMLFormat(Sequence<sal_Int8> const & aTextHtml)
+Sequence<sal_Int8> TextHtmlToHTMLFormat(Sequence<sal_Int8> const & aTextHtml)
{
OSL_ASSERT(aTextHtml.getLength() > 0);
diff --git a/vcl/osx/a11yfocuslistener.cxx b/vcl/osx/a11yfocuslistener.cxx
index 6c9efc4aafd0..68eb45a31f20 100644
--- a/vcl/osx/a11yfocuslistener.cxx
+++ b/vcl/osx/a11yfocuslistener.cxx
@@ -57,7 +57,7 @@ id AquaA11yFocusListener::getFocusedUIElement()
return m_focusedObject;
}
-void SAL_CALL
+void
AquaA11yFocusListener::focusedObjectChanged(const Reference< XAccessible >& xAccessible)
{
if ( nil != m_focusedObject ) {
diff --git a/vcl/osx/a11yfocuslistener.hxx b/vcl/osx/a11yfocuslistener.hxx
index 12c76d92741b..44a25cce0b8f 100644
--- a/vcl/osx/a11yfocuslistener.hxx
+++ b/vcl/osx/a11yfocuslistener.hxx
@@ -38,7 +38,7 @@ public:
id getFocusedUIElement();
// KeyboardFocusListener
- virtual void SAL_CALL focusedObjectChanged(const css::uno::Reference< css::accessibility::XAccessible >& xAccessible) override;
+ virtual void focusedObjectChanged(const css::uno::Reference< css::accessibility::XAccessible >& xAccessible) override;
};
#endif // INCLUDED_VCL_OSX_A11YFOCUSLISTENER_HXX
diff --git a/vcl/osx/saldata.cxx b/vcl/osx/saldata.cxx
index 48ee575fbea8..3357adbcd60a 100644
--- a/vcl/osx/saldata.cxx
+++ b/vcl/osx/saldata.cxx
@@ -28,7 +28,7 @@
oslThreadKey SalData::s_aAutoReleaseKey = nullptr;
-static void SAL_CALL releasePool( void* pPool )
+static void releasePool( void* pPool )
{
if( pPool )
[static_cast<NSAutoreleasePool*>(pPool) release];