Kaydet (Commit) 12d0c067 authored tarafından Noel Grandin's avatar Noel Grandin

remove unused enum value TrackingEventFlags::DontCallHdl

Change-Id: I75b28d20e2e0954fbd2fee396b8e06e9bb7d7073
Reviewed-on: https://gerrit.libreoffice.org/64028
Tested-by: Jenkins
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst ea72ad44
......@@ -1094,8 +1094,6 @@ include/vcl/wall.hxx:43
enum WallpaperStyle BottomLeft
include/vcl/wall.hxx:44
enum WallpaperStyle Bottom
include/vcl/window.hxx:121
enum TrackingEventFlags DontCallHdl
include/xmloff/shapeexport.hxx:53
enum XMLShapeExportFlags WIDTH
include/xmloff/shapeexport.hxx:54
......
......@@ -118,11 +118,10 @@ enum class TrackingEventFlags
Focus = 0x0004,
Repeat = 0x0100,
End = 0x1000,
DontCallHdl = 0x8000,
};
namespace o3tl
{
template<> struct typed_flags<TrackingEventFlags> : is_typed_flags<TrackingEventFlags, 0x9107> {};
template<> struct typed_flags<TrackingEventFlags> : is_typed_flags<TrackingEventFlags, 0x1107> {};
}
......
......@@ -296,7 +296,6 @@ void Window::EndTracking( TrackingEventFlags nFlags )
}
// call EndTracking if required
if ( !(nFlags & TrackingEventFlags::DontCallHdl) )
{
Point aMousePos( mpWindowImpl->mpFrameData->mnLastMouseX, mpWindowImpl->mpFrameData->mnLastMouseY );
if( ImplIsAntiparallel() )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment