diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-10-05 09:44:37 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-10-05 09:44:37 +0200 |
commit | e5d943d984bb0918f971eec45f45384cc0c72b67 (patch) | |
tree | ada24b6811aba11b94f290c01e3411ed1f49f248 /vcl/inc/win | |
parent | 26537a9c1ae27faa24a760bdc91a2162a92b58d7 (diff) |
'static' is invalid in friend declarations
Change-Id: I993e4dd219e247ca33022010da350f565c5e0dcf
Diffstat (limited to 'vcl/inc/win')
-rw-r--r-- | vcl/inc/win/saltimer.h | 2 |
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) |