From f0d4614df8b23e75a8f799229b0c2b742e16b9bc Mon Sep 17 00:00:00 2001 From: Peter Burow Date: Mon, 16 Sep 2002 06:50:53 +0000 Subject: fix: #103150# SetNoSelection() added --- svtools/inc/ivctrl.hxx | 6 ++++-- svtools/source/contnr/ivctrl.cxx | 9 +++++++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/svtools/inc/ivctrl.hxx b/svtools/inc/ivctrl.hxx index 35bee1117578..332910923cf8 100644 --- a/svtools/inc/ivctrl.hxx +++ b/svtools/inc/ivctrl.hxx @@ -2,9 +2,9 @@ * * $RCSfile: ivctrl.hxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: fs $ $Date: 2002-09-13 12:19:08 $ + * last change: $Author: pb $ $Date: 2002-09-16 07:50:11 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -410,6 +410,8 @@ public: Rectangle GetBoundingBox( SvxIconChoiceCtrlEntry* pEntry ) const; Rectangle GetEntryCharacterBounds( const sal_Int32 _nEntryPos, const sal_Int32 _nCharacterIndex ) const; + void SetNoSelection(); + // ACCESSIBILITY ========================================================== void AddEventListener( const Link& rEventListener ); diff --git a/svtools/source/contnr/ivctrl.cxx b/svtools/source/contnr/ivctrl.cxx index e19c6011033f..359363b191e6 100644 --- a/svtools/source/contnr/ivctrl.cxx +++ b/svtools/source/contnr/ivctrl.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ivctrl.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: pb $ $Date: 2002-09-16 07:24:18 $ + * last change: $Author: pb $ $Date: 2002-09-16 07:50:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -648,6 +648,11 @@ Rectangle SvtIconChoiceCtrl::GetEntryCharacterBounds( const sal_Int32 _nEntryPos return aRect; } +void SvtIconChoiceCtrl::SetNoSelection() +{ + _pImp->SetNoSelection(); +} + void SvtIconChoiceCtrl::AddEventListener( const Link& rEventListener ) { _pImp->AddEventListener( rEventListener ); -- cgit