summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2017-11-27 15:03:19 +0100
committerJan Holesovsky <kendy@collabora.com>2017-11-29 10:16:58 +0100
commitb4487b0fd22ce1fc595851f63a3f7bba36681f2c (patch)
tree8f988ad2cd4ee030255f765f805904ebb2c43c23 /include/vcl
parente2ae221f6164ba240da7d6470fd52c1982fa07d2 (diff)
lokdialog: Move the LogicInvalidate from Dialog down to Window.
Another step towards the autofilter popup working... Change-Id: I4907a23fcd0fc64da0c7f51e2f36b1657a17638c
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/dialog.hxx1
-rw-r--r--include/vcl/window.hxx1
2 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/dialog.hxx b/include/vcl/dialog.hxx
index 30fae84afa9a..acc1ceef2701 100644
--- a/include/vcl/dialog.hxx
+++ b/include/vcl/dialog.hxx
@@ -75,7 +75,6 @@ protected:
public:
SAL_DLLPRIVATE bool IsInClose() const { return mbInClose; }
virtual void doDeferredInit(WinBits nBits) override;
- virtual void LogicInvalidate(const tools::Rectangle* pRectangle) override;
void InvalidateFloatingWindow(const Point& rPos);
void CloseFloatingWindow();
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx
index b0ae9d319d49..f513ea8995eb 100644
--- a/include/vcl/window.hxx
+++ b/include/vcl/window.hxx
@@ -1065,6 +1065,7 @@ public:
virtual void Invalidate( InvalidateFlags nFlags = InvalidateFlags::NONE );
virtual void Invalidate( const tools::Rectangle& rRect, InvalidateFlags nFlags = InvalidateFlags::NONE );
virtual void Invalidate( const vcl::Region& rRegion, InvalidateFlags nFlags = InvalidateFlags::NONE );
+ virtual void LogicInvalidate(const tools::Rectangle* pRectangle) override;
void Validate();
bool HasPaintEvent() const;
void Update();