diff options
author | Frank Meies <fme@openoffice.org> | 2001-04-12 15:22:14 +0000 |
---|---|---|
committer | Frank Meies <fme@openoffice.org> | 2001-04-12 15:22:14 +0000 |
commit | 29058275744aa370ee820eecf23fdf45ba15e698 (patch) | |
tree | 986be5538fc02aa939837b8f703141e2fe409807 | |
parent | aeb2abff974c964357d1a5bb9ba24d83c05b5087 (diff) |
Fix: DECLARE_TABLE with USHORT values caused compiler problems (Solaris)
-rw-r--r-- | sw/source/core/text/inftxt.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/text/inftxt.hxx b/sw/source/core/text/inftxt.hxx index f034b98583a3..3d84d02ae453 100644 --- a/sw/source/core/text/inftxt.hxx +++ b/sw/source/core/text/inftxt.hxx @@ -2,9 +2,9 @@ * * $RCSfile: inftxt.hxx,v $ * - * $Revision: 1.21 $ + * $Revision: 1.22 $ * - * last change: $Author: fme $ $Date: 2001-04-12 07:47:48 $ + * last change: $Author: fme $ $Date: 2001-04-12 16:22:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -193,7 +193,7 @@ public: * class SwTxtSizeInfo *************************************************************************/ -DECLARE_TABLE( SwTxtPortionTable, USHORT ) +DECLARE_TABLE( SwTxtPortionTable, INT32 ) class SwTxtSizeInfo : public SwTxtInfo { |