summaryrefslogtreecommitdiff
path: root/store
diff options
context:
space:
mode:
authorMatthias Huetsch <mhu@openoffice.org>2001-11-26 20:38:56 +0000
committerMatthias Huetsch <mhu@openoffice.org>2001-11-26 20:38:56 +0000
commit76e7844b0b95dcc85193c9ef9517b109b527b1b3 (patch)
treeaa525a7cf1f527450c1280eccf8b7c2a83425061 /store
parent1700c8d3ed0eaafd76c87aa5317880148b01d9bc (diff)
#95272# Reordered OStoreLockBytes member initializers to match declaration.
#i1750# Warning provided by 'Wall' compilation.
Diffstat (limited to 'store')
-rw-r--r--store/source/storlckb.cxx8
-rw-r--r--store/source/storlckb.hxx8
2 files changed, 8 insertions, 8 deletions
diff --git a/store/source/storlckb.cxx b/store/source/storlckb.cxx
index 20d42dcd1ef1..8a1d85de207c 100644
--- a/store/source/storlckb.cxx
+++ b/store/source/storlckb.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: storlckb.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mhu $ $Date: 2001-03-13 21:03:26 $
+ * last change: $Author: mhu $ $Date: 2001-11-26 21:38:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,7 +59,7 @@
*
************************************************************************/
-#define _STORE_STORLCKB_CXX_ "$Revision: 1.2 $"
+#define _STORE_STORLCKB_CXX_ "$Revision: 1.3 $"
#ifndef _SAL_TYPES_H_
#include <sal/types.h>
@@ -395,12 +395,12 @@ const sal_uInt32 OStoreLockBytes::m_nTypeId = sal_uInt32(0x94190310);
*/
OStoreLockBytes::OStoreLockBytes (void)
: m_xManager (NULL),
- m_nPageSize (0),
m_pNode (NULL),
m_pData (NULL),
m_pSingle (NULL),
m_pDouble (NULL),
m_pTriple (NULL),
+ m_nPageSize (0),
m_bWriteable (sal_False)
{
}
diff --git a/store/source/storlckb.hxx b/store/source/storlckb.hxx
index 8a67a6b57cc7..3c442ead072d 100644
--- a/store/source/storlckb.hxx
+++ b/store/source/storlckb.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: storlckb.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mhu $ $Date: 2001-03-13 21:03:26 $
+ * last change: $Author: mhu $ $Date: 2001-11-26 21:38:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _STORE_STORLCKB_HXX_
-#define _STORE_STORLCKB_HXX_ "$Revision: 1.2 $"
+#define _STORE_STORLCKB_HXX_ "$Revision: 1.3 $"
#ifndef _SAL_TYPES_H_
#include <sal/types.h>
@@ -305,8 +305,8 @@ private:
indirect *m_pDouble;
indirect *m_pTriple;
- sal_Bool m_bWriteable;
sal_uInt16 m_nPageSize;
+ sal_Bool m_bWriteable;
/** Not implemented.
*/