summaryrefslogtreecommitdiffstats
path: root/sw/inc/node.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-11-01 18:46:02 +0100
committerMichael Stahl <mstahl@redhat.com>2012-11-01 18:46:02 +0100
commita4ec5de5ed537604ef0229990dc449821ad13a4f (patch)
tree0f2a81b02830848e2e2a8025e26a7f4a3945568d /sw/inc/node.hxx
parentBetter way to initialize SwNode (diff)
downloadcore-a4ec5de5ed537604ef0229990dc449821ad13a4f.tar.gz
core-a4ec5de5ed537604ef0229990dc449821ad13a4f.zip
SwNode: reorder that to avoid -Werror=reorder
Change-Id: Ic58a5503dc6b7991c8804feef05b814d1055bfb9
Diffstat (limited to 'sw/inc/node.hxx')
-rw-r--r--sw/inc/node.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/node.hxx b/sw/inc/node.hxx
index 003d7b615dca..35ba3f226ef2 100644
--- a/sw/inc/node.hxx
+++ b/sw/inc/node.hxx
@@ -91,11 +91,6 @@ class SW_DLLPUBLIC SwNode
{
friend class SwNodes;
-#ifdef DBG_UTIL
- static long s_nSerial;
- long m_nSerial;
-#endif
-
sal_uInt8 nNodeType;
/// For text nodes: level of auto format. Was put here because we had still free bits.
@@ -103,6 +98,11 @@ class SW_DLLPUBLIC SwNode
bool bSetNumLSpace : 1; ///< For numbering: TRUE: set indent.
bool bIgnoreDontExpand : 1; ///< for Text Attributes - ignore the flag
+#ifdef DBG_UTIL
+ static long s_nSerial;
+ long m_nSerial;
+#endif
+
protected:
SwStartNode* pStartOfSection;