diff options
author | jp <jp@openoffice.org> | 2001-07-31 15:04:55 +0000 |
---|---|---|
committer | jp <jp@openoffice.org> | 2001-07-31 15:04:55 +0000 |
commit | 06baa0d3c72d2481dfa1ae3caa127ce4fae02603 (patch) | |
tree | 1d8b703331c3be29e6cb0f83a256c0b89261efa8 /sw/source/ui/misc/num.cxx | |
parent | dae447f97115acb00f77ab98770f70159fd43bbe (diff) |
Bug #90441#: change GetUIName to FillUIName or use GetUIName in the correct way
Diffstat (limited to 'sw/source/ui/misc/num.cxx')
-rw-r--r-- | sw/source/ui/misc/num.cxx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sw/source/ui/misc/num.cxx b/sw/source/ui/misc/num.cxx index 8605110885fb..34bb2044105b 100644 --- a/sw/source/ui/misc/num.cxx +++ b/sw/source/ui/misc/num.cxx @@ -2,9 +2,9 @@ * * $RCSfile: num.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: mtg $ $Date: 2001-07-19 16:56:22 $ + * last change: $Author: jp $ $Date: 2001-07-31 16:04:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -849,8 +849,9 @@ SwSvxNumBulletTabDialog::~SwSvxNumBulletTabDialog() void SwSvxNumBulletTabDialog::PageCreated(USHORT nPageId, SfxTabPage& rPage) { //Namen der Vorlagen und Metric setzen - String sNumCharFmt; SwStyleNameMapper::GetUIName( RES_POOLCHR_NUM_LEVEL, sNumCharFmt ); - String sBulletCharFmt; SwStyleNameMapper::GetUIName( RES_POOLCHR_BUL_LEVEL, sBulletCharFmt ); + String sNumCharFmt, sBulletCharFmt; + SwStyleNameMapper::FillUIName( RES_POOLCHR_NUM_LEVEL, sNumCharFmt ); + SwStyleNameMapper::FillUIName( RES_POOLCHR_BUL_LEVEL, sBulletCharFmt ); switch ( nPageId ) { @@ -908,6 +909,9 @@ IMPL_LINK(SwSvxNumBulletTabDialog, RemoveNumberingHdl, PushButton*, EMPTYARG) Source Code Control System - Update $Log: not supported by cvs2svn $ + Revision 1.4 2001/07/19 16:56:22 mtg + #89999# use the static methods in the new SwStyleNameMapper class for Programmatic Name <-> UI Name <-> Pool Id conversion + Revision 1.3 2001/06/01 11:04:53 fme Fix #86988#: Redesign of dialogs |