diff options
author | Kurt Zenker <kz@openoffice.org> | 2003-12-11 11:16:28 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2003-12-11 11:16:28 +0000 |
commit | 0904bf5ddbb26e85a5d3d559082887e0b0e55534 (patch) | |
tree | 79f39a640c9d925495600f8d41ebbd6efca55d8d /svx/source/form/fmexpl.cxx | |
parent | 5e615eaf740235a4513402833586139d0b9b28c1 (diff) |
INTEGRATION: CWS frmcontrols01 (1.26.362); FILE MERGED
2003/10/27 11:47:04 fs 1.26.362.2: #i21605# SPINBUTTON instead of SPINFIELD
2003/10/22 13:01:18 fs 1.26.362.1: #21277# new form controls: scrollbars and spin fields
Diffstat (limited to 'svx/source/form/fmexpl.cxx')
-rw-r--r-- | svx/source/form/fmexpl.cxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/svx/source/form/fmexpl.cxx b/svx/source/form/fmexpl.cxx index ef9ed538153c..2d98b023540f 100644 --- a/svx/source/form/fmexpl.cxx +++ b/svx/source/form/fmexpl.cxx @@ -2,9 +2,9 @@ * * $RCSfile: fmexpl.cxx,v $ * - * $Revision: 1.26 $ + * $Revision: 1.27 $ * - * last change: $Author: fs $ $Date: 2002-09-25 12:40:36 $ + * last change: $Author: kz $ $Date: 2003-12-11 12:16:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -657,6 +657,14 @@ Image FmControlData::GetImage(const ImageList& ilNavigatorImages) const case OBJ_FM_GRID: aImage = ilNavigatorImages.GetImage( RID_SVXIMG_GRID ); break; + + case OBJ_FM_SCROLLBAR: + aImage = ilNavigatorImages.GetImage( RID_SVXIMG_SCROLLBAR ); + break; + + case OBJ_FM_SPINBUTTON: + aImage = ilNavigatorImages.GetImage( RID_SVXIMG_SPINBUTTON); + break; } return aImage; |