diff options
author | Christian Lippka <cl@openoffice.org> | 2001-02-21 13:07:01 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2001-02-21 13:07:01 +0000 |
commit | 170f000e22a47d9eb3fd495b4847319fbfc9b1a9 (patch) | |
tree | 84e4d93bd145773b16fa6ba78605b2d8d11b6515 /offapi | |
parent | 8fbc5e97cc8780198ab85dd3ef64b052654708ed (diff) |
added MeasureUnit constants
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/util/MeasureUnit.idl | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/offapi/com/sun/star/util/MeasureUnit.idl b/offapi/com/sun/star/util/MeasureUnit.idl index 5e8e3200d549..292bd57334e8 100644 --- a/offapi/com/sun/star/util/MeasureUnit.idl +++ b/offapi/com/sun/star/util/MeasureUnit.idl @@ -2,9 +2,9 @@ * * $RCSfile: MeasureUnit.idl,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: cl $ $Date: 2001-02-21 12:53:39 $ + * last change: $Author: cl $ $Date: 2001-02-21 14:07:01 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -82,26 +82,26 @@ constants MeasureUnit /** all measures for this component are in millimeter */ const short MM = 2; + /** all measures for this component are in centimeters */ + const short CM = 3; + /** all measures for this component are in 1000th inch */ - const short INCH_1000TH = 3; + const short INCH_1000TH = 4; /** all measures for this component are in 100th inch */ - const short INCH_100TH = 4; + const short INCH_100TH = 5; /** all measures for this component are in 10th inch */ - const short INCH_10TH = 5; + const short INCH_10TH = 6; /** all measures for this component are in inch */ - const short INCH = 6; + const short INCH = 7; /** all measures for this component are in points */ - const short POINT = 7; + const short POINT = 8; /** all measures for this component are in twips */ - const short TWIP = 8; - - /** all measures for this component are in centimeters */ - const short CM = 9; + const short TWIP = 9; /** all measures for this component are in meters */ const short M = 10; |