diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-14 09:12:31 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-04-14 07:46:27 +0000 |
commit | 6656693836a382e6dac3a8c7ae794517b5f92bcc (patch) | |
tree | 9ad507b2fe0502b0be0e6278c79661c617b440d3 /vcl/inc/win | |
parent | 235dcc11e7e5291188e134f37a03849d741c4f6e (diff) |
remove dead fields from WinSalSystem::DisplayMonitor
Change-Id: I76254f194ac1bbd019b8c46f3f3f0f28e4e7f0ec
Reviewed-on: https://gerrit.libreoffice.org/24074
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/inc/win')
-rw-r--r-- | vcl/inc/win/salsys.h | 14 | ||||
-rw-r--r-- | vcl/inc/win/wincomp.hxx | 2 |
2 files changed, 4 insertions, 12 deletions
diff --git a/vcl/inc/win/salsys.h b/vcl/inc/win/salsys.h index 7efce50509a9..5dd8de6450a6 100644 --- a/vcl/inc/win/salsys.h +++ b/vcl/inc/win/salsys.h @@ -31,19 +31,13 @@ public: struct DisplayMonitor { OUString m_aName; - OUString m_aDeviceName; - Rectangle m_aArea; - sal_Int32 m_nStateFlags; + Rectangle m_aArea; - DisplayMonitor() : m_nStateFlags( 0 ) {} + DisplayMonitor() {} DisplayMonitor( const OUString& rName, - const OUString& rDevName, - const Rectangle& rArea, - DWORD nStateFlags ) + const Rectangle& rArea ) : m_aName( rName ), - m_aDeviceName( rDevName ), - m_aArea( rArea ), - m_nStateFlags( nStateFlags ) + m_aArea( rArea ) { } ~DisplayMonitor() {} diff --git a/vcl/inc/win/wincomp.hxx b/vcl/inc/win/wincomp.hxx index 549b3f4dd175..8d1377014d25 100644 --- a/vcl/inc/win/wincomp.hxx +++ b/vcl/inc/win/wincomp.hxx @@ -171,8 +171,6 @@ inline HINSTANCE GetWindowInstance( HWND hWnd ) } -#define MSH_MOUSEWHEEL "MSWHEEL_ROLLMSG" - #define MOUSEZ_CLASSNAME "MouseZ" // wheel window class #define MOUSEZ_TITLE "Magellan MSWHEEL" // wheel window title |