summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2000-10-24 11:05:24 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2000-10-24 11:05:24 +0000
commitcf11220912a9c43141de47bc7555881a088d0e82 (patch)
tree9a7d013da9ba67774a17df52b99ee2e8d257c38c /svx
parent60da3acbeb1eba68ff607b09e399d30d4290f02c (diff)
no inline for FirstInMap() and PixelToMapIndex: have already been called
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/charmap.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/dialog/charmap.cxx b/svx/source/dialog/charmap.cxx
index d93248b5b61e..559217763321 100644
--- a/svx/source/dialog/charmap.cxx
+++ b/svx/source/dialog/charmap.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: charmap.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hdu $ $Date: 2000-10-19 09:10:58 $
+ * last change: $Author: rt $ $Date: 2000-10-24 12:05:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -225,7 +225,7 @@ void SvxShowCharSet::Command( const CommandEvent& rCEvt )
#define LAST_SURROGATE sal_Unicode(0xDFFF)
#define COUNT_SURROGATE (LAST_SURROGATE - FIRST_SURROGATE + 1);
-inline int SvxShowCharSet::FirstInMap( void) const
+int SvxShowCharSet::FirstInMap( void) const
{
return 0;
}
@@ -282,7 +282,7 @@ inline Point SvxShowCharSet::MapIndexToPixel( int index) const
return Point( x, y);
}
-inline int SvxShowCharSet::PixelToMapIndex( const Point point) const
+int SvxShowCharSet::PixelToMapIndex( const Point point) const
{
int base = FirstInView();
return (base + (point.X()/nX) + (point.Y()/nY) * COLUMN_COUNT);