diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2005-09-28 14:11:25 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2005-09-28 14:11:25 +0000 |
commit | 3e1fdf7857a2dc7ff39df7edb94bba9216303abe (patch) | |
tree | bd14fc9791831797d808e762e35bba0f121ff659 /padmin | |
parent | c884cefb39ecad50694e5d5072178afc44d24453 (diff) |
INTEGRATION: CWS vcl39 (1.12.58); FILE MERGED
2005/03/21 17:51:23 pl 1.12.58.1: #i42835#
Diffstat (limited to 'padmin')
-rw-r--r-- | padmin/source/fontentry.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/padmin/source/fontentry.cxx b/padmin/source/fontentry.cxx index 566711a7fc4a..486bfe742ca5 100644 --- a/padmin/source/fontentry.cxx +++ b/padmin/source/fontentry.cxx @@ -4,9 +4,9 @@ * * $RCSfile: fontentry.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: rt $ $Date: 2005-09-08 16:23:40 $ + * last change: $Author: hr $ $Date: 2005-09-28 15:11:25 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -313,14 +313,14 @@ void FontNameDlg::init() FastPrintFontInfo aInfo; m_rFontManager.getFontFastInfo( *font_it, aInfo ); - ::std::list< fontID > aDups; + std::list< fontID > aDups; String aEntry; if( m_rFontManager.getFileDuplicates( *font_it, aDups ) ) { FastPrintFontInfo aDupInfo; - ::std::list< FastPrintFontInfo > aInfos; + std::list< FastPrintFontInfo > aInfos; aInfos.push_back( aInfo ); - for( ::std::list< fontID >::iterator dup = aDups.begin(); dup != aDups.end(); ++dup ) + for( std::list< fontID >::iterator dup = aDups.begin(); dup != aDups.end(); ++dup ) { m_rFontManager.getFontFastInfo( *dup, aDupInfo ); aInfos.push_back( aDupInfo ); |