diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-10 10:23:36 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-10 11:59:04 +0000 |
commit | aa544a002e534a313ad9dd365e80f052789d9963 (patch) | |
tree | f0f7aaaa75e09483faf0771f8ac871bbe64445ad /vcl/inc/salobj.hxx | |
parent | 8898a2359504c0c1e80c39468b8be10065597182 (diff) |
Convert SALOBJ_EVENT to scoped enum
Change-Id: I41fcdbb2381008b99f6cb7cafb085d35f8db9374
Reviewed-on: https://gerrit.libreoffice.org/24828
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/inc/salobj.hxx')
-rw-r--r-- | vcl/inc/salobj.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/salobj.hxx b/vcl/inc/salobj.hxx index 174b1b11abc4..b1005fb87846 100644 --- a/vcl/inc/salobj.hxx +++ b/vcl/inc/salobj.hxx @@ -52,7 +52,7 @@ public: void SetCallback( void* pInst, SALOBJECTPROC pProc ) { m_pInst = pInst; m_pCallback = pProc; } - void CallCallback( sal_uInt16 nEvent, const void* pEvent ) + void CallCallback( SalObjEvent nEvent, const void* pEvent ) { if (m_pCallback) m_pCallback( m_pInst, this, nEvent, pEvent ); } void SetMouseTransparent( bool bMouseTransparent ) |