summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-11-26 14:58:20 +0100
committerMichael Stahl <mstahl@redhat.com>2015-11-26 14:58:20 +0100
commite1628be85186ac695e8b343a99687c58ba579ca5 (patch)
treeb54b0d534af67497ee5575c20cd91d0e2c9676d6 /vcl
parentdb8074cb7b1e8453d05ca361030b0ccd1801d368 (diff)
vcl: fix build
Change-Id: I51d992e9befc78f6e429480e29bfb78e9be87ac2
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/toolbox2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/toolbox2.cxx b/vcl/source/window/toolbox2.cxx
index 72a3b58bef55..aabf95c98f32 100644
--- a/vcl/source/window/toolbox2.cxx
+++ b/vcl/source/window/toolbox2.cxx
@@ -357,7 +357,7 @@ void ToolBox::ImplInvalidate( bool bNewCalc, bool bFullPaint )
{
Invalidate( Rectangle( mnLeftBorder, mnTopBorder,
mnDX-mnRightBorder-1, mnDY-mnBottomBorder-1 ) );
- maIdle.Stop();
+ mpIdle->Stop();
}
}
else
@@ -368,7 +368,7 @@ void ToolBox::ImplInvalidate( bool bNewCalc, bool bFullPaint )
// do we need to redraw?
if ( IsReallyVisible() && IsUpdateMode() )
- maIdle.Start();
+ mpIdle->Start();
}
}