diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2000-12-20 15:12:41 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2000-12-20 15:12:41 +0000 |
commit | e0b10fcb602261ef7a0878a062ce236307fc0121 (patch) | |
tree | 8dde024f0a1a334d26f58298c0e54e502c90fc03 /svx/source/dialog/charmap.cxx | |
parent | c60fd64994bc5e67ca57e93d46e2a0afbeaa3c62 (diff) |
get rid of compiler warning
Diffstat (limited to 'svx/source/dialog/charmap.cxx')
-rw-r--r-- | svx/source/dialog/charmap.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/dialog/charmap.cxx b/svx/source/dialog/charmap.cxx index ad0030336acc..8b1d154c5617 100644 --- a/svx/source/dialog/charmap.cxx +++ b/svx/source/dialog/charmap.cxx @@ -2,9 +2,9 @@ * * $RCSfile: charmap.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: hdu $ $Date: 2000-12-06 16:58:45 $ + * last change: $Author: vg $ $Date: 2000-12-20 16:12:41 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -92,12 +92,12 @@ // TODO: LastInMap(), UnicodeToMapIndex() and MapIndexToUnicode() should be in Font, // we let them mature here though because it is currently the only use -int FirstInMap( const Font& ); -int LastInMap( const Font& ); -int UnicodeToMapIndex( const Font&, sal_Unicode c ); -sal_Unicode MapIndexToUnicode( const Font&, int ); -bool ContainsSurrogates( const Font& ); -int CountGlyphs( const Font& ); +static int FirstInMap( const Font& ); +static int LastInMap( const Font& ); +static int UnicodeToMapIndex( const Font&, sal_Unicode c ); +static sal_Unicode MapIndexToUnicode( const Font&, int ); +static bool ContainsSurrogates( const Font& ); +static int CountGlyphs( const Font& ); #define FIRST_UNICODE sal_Unicode(0x0020) /* ASCII space code */ #define LAST_UNICODE sal_Unicode(0xFFFD) /* end of UCS2 */ |