summaryrefslogtreecommitdiffstats
path: root/sw/source/core/text/frmform.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/text/frmform.cxx')
-rw-r--r--sw/source/core/text/frmform.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/text/frmform.cxx b/sw/source/core/text/frmform.cxx
index 18f89aded9e0..c30e6a231395 100644
--- a/sw/source/core/text/frmform.cxx
+++ b/sw/source/core/text/frmform.cxx
@@ -60,9 +60,9 @@ class FormatLevel
{
static sal_uInt16 nLevel;
public:
- inline FormatLevel() { ++nLevel; }
- inline ~FormatLevel() { --nLevel; }
- static inline sal_uInt16 GetLevel() { return nLevel; }
+ FormatLevel() { ++nLevel; }
+ ~FormatLevel() { --nLevel; }
+ static sal_uInt16 GetLevel() { return nLevel; }
static bool LastLevel() { return 10 < nLevel; }
};
sal_uInt16 FormatLevel::nLevel = 0;