summaryrefslogtreecommitdiff
path: root/svtools/source/contnr/imivctl1.cxx
diff options
context:
space:
mode:
authorPascal Junck <pjunck@openoffice.org>2004-10-22 11:34:02 +0000
committerPascal Junck <pjunck@openoffice.org>2004-10-22 11:34:02 +0000
commitf4c21ea7cf77de46cfb6a2c3ce5ff1ae7713983c (patch)
tree1a194a49abd13668cff2e49ef66dfec8e2bac1de /svtools/source/contnr/imivctl1.cxx
parent5e438ccafcb4f1b983224d50b7dfb806ede25601 (diff)
INTEGRATION: CWS dba17 (1.22.10); FILE MERGED
2004/09/30 14:53:00 fs 1.22.10.1: #ii34790# +CreateAutoMnemonics with an additional MnemonicGenerator, to share the 'mnemonic space' with other components
Diffstat (limited to 'svtools/source/contnr/imivctl1.cxx')
-rw-r--r--svtools/source/contnr/imivctl1.cxx23
1 files changed, 15 insertions, 8 deletions
diff --git a/svtools/source/contnr/imivctl1.cxx b/svtools/source/contnr/imivctl1.cxx
index b0df6cc1f03a..e4e2d91bf856 100644
--- a/svtools/source/contnr/imivctl1.cxx
+++ b/svtools/source/contnr/imivctl1.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: imivctl1.cxx,v $
*
- * $Revision: 1.22 $
+ * $Revision: 1.23 $
*
- * last change: $Author: rt $ $Date: 2004-09-09 09:06:19 $
+ * last change: $Author: pjunck $ $Date: 2004-10-22 12:34:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -99,6 +99,7 @@
#include "svmedit.hxx"
#include <algorithm>
+#include <memory>
#define DD_SCROLL_PIXEL 24
#define IMPICNVIEW_ACC_RETURN 1
@@ -390,18 +391,24 @@ void SvxIconChoiceCtrl_Impl::InsertEntry( SvxIconChoiceCtrlEntry* pEntry, ULONG
}
}
-void SvxIconChoiceCtrl_Impl::CreateAutoMnemonics( void )
+void SvxIconChoiceCtrl_Impl::CreateAutoMnemonics( MnemonicGenerator* _pGenerator )
{
- MnemonicGenerator aMnemonicGenerator;
- ULONG nEntryCount = GetEntryCount();
- ULONG i;
+ ::std::auto_ptr< MnemonicGenerator > pAutoDeleteOwnGenerator;
+ if ( !_pGenerator )
+ {
+ _pGenerator = new MnemonicGenerator;
+ pAutoDeleteOwnGenerator.reset( _pGenerator );
+ }
+
+ ULONG nEntryCount = GetEntryCount();
+ ULONG i;
// insert texts in generator
for( i = 0; i < nEntryCount; ++i )
{
DBG_ASSERT( GetEntry( i ), "-SvxIconChoiceCtrl_Impl::CreateAutoMnemonics(): more expected than provided!" );
- aMnemonicGenerator.RegisterMnemonic( GetEntry( i )->GetText() );
+ _pGenerator->RegisterMnemonic( GetEntry( i )->GetText() );
}
// exchange texts with generated mnemonics
@@ -410,7 +417,7 @@ void SvxIconChoiceCtrl_Impl::CreateAutoMnemonics( void )
SvxIconChoiceCtrlEntry* pEntry = GetEntry( i );
String aTxt = pEntry->GetText();
- if( aMnemonicGenerator.CreateMnemonic( aTxt ) )
+ if( _pGenerator->CreateMnemonic( aTxt ) )
pEntry->SetText( aTxt );
}
}