summaryrefslogtreecommitdiff
path: root/basic/inc
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-08-30 08:58:26 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-08-30 08:58:26 +0000
commit9aac84d2fb0bf0d6d5ffe228f85a9c668f25cafb (patch)
tree352b70d7d1dfd4c783754a16d697e5ca74592dd3 /basic/inc
parent17f7849bc90c3a7596ebd285e6de8f8273e24897 (diff)
INTEGRATION: CWS npower7 (1.2.12); FILE MERGED
2007/05/02 09:44:42 npower 1.2.12.1: #i76818#
Diffstat (limited to 'basic/inc')
-rw-r--r--basic/inc/basic/sbx.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/basic/inc/basic/sbx.hxx b/basic/inc/basic/sbx.hxx
index 1cf81a80d654..da4eb765dcd1 100644
--- a/basic/inc/basic/sbx.hxx
+++ b/basic/inc/basic/sbx.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: sbx.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: vg $ $Date: 2007-04-11 12:53:21 $
+ * last change: $Author: vg $ $Date: 2007-08-30 09:58:26 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -263,6 +263,7 @@ class SbxDimArray : public SbxArray
SbxDim* pFirst, *pLast; // Links fuer Dimension-Tabelle
short nDim; // Anzahl Dimensionen
void AddDimImpl32( INT32, INT32, BOOL bAllowSize0 );
+ bool mbHasFixedSize;
protected:
USHORT Offset( const short* );
UINT32 Offset32( const INT32* );
@@ -302,6 +303,8 @@ public:
void AddDim32( INT32, INT32 );
void unoAddDim32( INT32, INT32 );
BOOL GetDim32( INT32, INT32&, INT32& ) const;
+ bool hasFixedSize() { return mbHasFixedSize; };
+ void setHasFixedSize( bool bHasFixedSize ) {mbHasFixedSize = bHasFixedSize; };
};
#endif