Revert "Window::PostPaint() was unused and empty"

Nah, seems that it was used after all on Windows, somehow.

This reverts commit 5754264f93001978a3c5f5f1cdabd7113de010b8.
This commit is contained in:
Tor Lillqvist
2013-03-07 02:32:50 +02:00
parent 0ce2d740a2
commit 334e3dfd84
2 changed files with 7 additions and 0 deletions

View File

@@ -590,6 +590,7 @@ public:
virtual void PrePaint(); virtual void PrePaint();
virtual void Paint( const Rectangle& rRect ); virtual void Paint( const Rectangle& rRect );
virtual void PostPaint();
virtual void Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, sal_uLong nFlags ); virtual void Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, sal_uLong nFlags );
virtual void Move(); virtual void Move();
virtual void Resize(); virtual void Resize();

View File

@@ -4788,6 +4788,12 @@ void Window::Paint( const Rectangle& rRect )
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
void Window::PostPaint()
{
}
// -----------------------------------------------------------------------
void Window::Draw( OutputDevice*, const Point&, const Size&, sal_uLong ) void Window::Draw( OutputDevice*, const Point&, const Size&, sal_uLong )
{ {
DBG_CHKTHIS( Window, ImplDbgCheckWindow ); DBG_CHKTHIS( Window, ImplDbgCheckWindow );