summaryrefslogtreecommitdiff
path: root/vcl/aqua/source/app/saltimer.cxx
diff options
context:
space:
mode:
authorPatrick Luby <pluby@openoffice.org>2000-12-03 23:10:12 +0000
committerPatrick Luby <pluby@openoffice.org>2000-12-03 23:10:12 +0000
commitb98a43d15749001102b824d6e7f97338a1614388 (patch)
tree0286467097a9768bc47592038de10382ca4e2f63 /vcl/aqua/source/app/saltimer.cxx
parent1c47481c12afbfb2bef6dabd8bdbe1ac718f6e30 (diff)
Consolidated VCL drawing routines with VCLView drawing methods. Implemented resizing of window with a lot less flashing during repainting. And repaints no longer paint over the window's resize box.
Diffstat (limited to 'vcl/aqua/source/app/saltimer.cxx')
-rw-r--r--vcl/aqua/source/app/saltimer.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/vcl/aqua/source/app/saltimer.cxx b/vcl/aqua/source/app/saltimer.cxx
index 8e3219cb74da..cad742a354fc 100644
--- a/vcl/aqua/source/app/saltimer.cxx
+++ b/vcl/aqua/source/app/saltimer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: saltimer.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: pluby $ $Date: 2000-12-01 22:29:20 $
+ * last change: $Author: pluby $ $Date: 2000-12-04 00:10:12 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -83,7 +83,9 @@ extern "C" {
void CallSalTimerCallbackProc()
{
SalData* pSalData = GetSalData();
- pSalData->mpTimerProc();
+
+ if ( pSalData->mpTimerProc )
+ pSalData->mpTimerProc();
}
#ifdef __cplusplus