diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-07-19 13:53:56 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-07-19 13:53:56 +0000 |
commit | 71bae71a05d2db05b9bc9673e8ec50e629c39118 (patch) | |
tree | 18d1ecdf3d5a93e2f11ee94bca8649b4eaa34c40 /svtools/workben | |
parent | c303e2de7a1b3950778d0789d81ded10d3ed9e1e (diff) |
INTEGRATION: CWS vcl61 (1.7.110); FILE MERGED
2006/07/12 17:04:16 pl 1.7.110.1: #i66758# fix a warning
Diffstat (limited to 'svtools/workben')
-rw-r--r-- | svtools/workben/svdem.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/workben/svdem.cxx b/svtools/workben/svdem.cxx index 4c6f242d1eca..487e472bf102 100644 --- a/svtools/workben/svdem.cxx +++ b/svtools/workben/svdem.cxx @@ -4,9 +4,9 @@ * * $RCSfile: svdem.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: vg $ $Date: 2006-04-07 16:05:28 $ + * last change: $Author: kz $ $Date: 2006-07-19 14:53:56 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1011,8 +1011,8 @@ IMPL_LINK( MyWin, CalSelectHdl, CalendarField*, pCtrl ) { if ( pCtrl == &aCalendarField ) { - Calendar* pCalendar = pCtrl->GetCalendar(); - aCalendarField2.SetDate( pCalendar->GetSelectDate( pCalendar->GetSelectDateCount()-1 ) ); + Calendar* l_pCalendar = pCtrl->GetCalendar(); + aCalendarField2.SetDate( l_pCalendar->GetSelectDate( l_pCalendar->GetSelectDateCount()-1 ) ); } return 0; |