summaryrefslogtreecommitdiff
path: root/vcl/inc/win
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-10-05 09:44:37 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-10-05 09:44:37 +0200
commite5d943d984bb0918f971eec45f45384cc0c72b67 (patch)
treeada24b6811aba11b94f290c01e3411ed1f49f248 /vcl/inc/win
parent26537a9c1ae27faa24a760bdc91a2162a92b58d7 (diff)
'static' is invalid in friend declarations
Change-Id: I993e4dd219e247ca33022010da350f565c5e0dcf
Diffstat (limited to 'vcl/inc/win')
-rw-r--r--vcl/inc/win/saltimer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/win/saltimer.h b/vcl/inc/win/saltimer.h
index 06e77b171cb3..5ad6a1718f19 100644
--- a/vcl/inc/win/saltimer.h
+++ b/vcl/inc/win/saltimer.h
@@ -27,7 +27,7 @@ class WinSalTimer final : public SalTimer, protected VersionedEvent
// for access to Impl* functions
friend LRESULT CALLBACK SalComWndProc( HWND, UINT nMsg, WPARAM wParam, LPARAM lParam, int& rDef );
// for access to m_bPollForMessage
- friend static void CALLBACK SalTimerProc( PVOID data, BOOLEAN );
+ friend void CALLBACK SalTimerProc( PVOID data, BOOLEAN );
HANDLE m_nTimerId; ///< Windows timer id
bool m_bPollForMessage; ///< Run yield until a message is caught (most likely the 0ms timer)