summaryrefslogtreecommitdiffstats
path: root/sc
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2015-09-17 00:57:04 +0200
committerMatteo Casalin <matteo.casalin@yahoo.com>2015-10-27 13:59:07 +0100
commitdf3682c2981f9212743e84abc6c75f937011cc28 (patch)
tree8a4a17f0c0e38c92fc53a3ecc28de11b497aac2e /sc
parentUse positioned getToken in ScAsciiOptions::ReadFromString (2) (diff)
downloadcore-df3682c2981f9212743e84abc6c75f937011cc28.tar.gz
core-df3682c2981f9212743e84abc6c75f937011cc28.zip
Remove inline specifier for functions defined in class
Change-Id: Ia0fcd51c5c1cfaff86aeaab2919addcce6621322
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/inc/csvsplits.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/inc/csvsplits.hxx b/sc/source/ui/inc/csvsplits.hxx
index a53be066543f..3a07f83b0b69 100644
--- a/sc/source/ui/inc/csvsplits.hxx
+++ b/sc/source/ui/inc/csvsplits.hxx
@@ -67,12 +67,12 @@ public:
sal_uInt32 UpperBound( sal_Int32 nPos ) const;
/** Returns the number of splits. */
- inline sal_uInt32 Count() const
+ sal_uInt32 Count() const
{ return maVec.size(); }
/** Returns the position of the specified split. */
sal_Int32 GetPos( sal_uInt32 nIndex ) const;
/** Returns the position of the specified split. */
- inline sal_Int32 operator[]( sal_uInt32 nIndex ) const
+ sal_Int32 operator[]( sal_uInt32 nIndex ) const
{ return GetPos( nIndex ); }
private: