summaryrefslogtreecommitdiff
path: root/sw/source/ui/envelp/labelcfg.cxx
diff options
context:
space:
mode:
authorOliver Specht <os@openoffice.org>2001-09-21 13:20:11 +0000
committerOliver Specht <os@openoffice.org>2001-09-21 13:20:11 +0000
commitbc0704ef089abe8d9dfd86c9733883854a10994f (patch)
treed5beb7676301ed21c6b889a130ec9f346be2226c /sw/source/ui/envelp/labelcfg.cxx
parentd2096f41f4abf4975f6530cd027973276b3ce235 (diff)
#92318# row/column mix corrected
Diffstat (limited to 'sw/source/ui/envelp/labelcfg.cxx')
-rw-r--r--sw/source/ui/envelp/labelcfg.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/ui/envelp/labelcfg.cxx b/sw/source/ui/envelp/labelcfg.cxx
index 0813463dc879..9ce4e6fc4c47 100644
--- a/sw/source/ui/envelp/labelcfg.cxx
+++ b/sw/source/ui/envelp/labelcfg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: labelcfg.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: os $ $Date: 2001-08-29 12:20:07 $
+ * last change: $Author: os $ $Date: 2001-09-21 14:20:11 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -163,8 +163,8 @@ SwLabRec* lcl_CreateSwLabRec(Sequence<Any>& rValues, const OUString& rManufactur
case 4 : pNewRec->lHeight = MM100_TO_TWIP(nVal); break;
case 5 : pNewRec->lLeft = MM100_TO_TWIP(nVal);break;
case 6 : pNewRec->lUpper = MM100_TO_TWIP(nVal);break;
- case 7 : pNewRec->nRows = nVal; break;
- case 8 : pNewRec->nCols = nVal; break;
+ case 7 : pNewRec->nCols = nVal; break;
+ case 8 : pNewRec->nRows = nVal; break;
}
}
}
@@ -199,8 +199,8 @@ Sequence<PropertyValue> lcl_CreateProperties(
sTmp += OUString::valueOf(TWIP_TO_MM100(rRec.lHeight) ); sTmp += sColon;
sTmp += OUString::valueOf(TWIP_TO_MM100(rRec.lLeft) ); sTmp += sColon;
sTmp += OUString::valueOf(TWIP_TO_MM100(rRec.lUpper) ); sTmp += sColon;
- sTmp += OUString::valueOf(rRec.nRows ); sTmp += sColon;
- sTmp += OUString::valueOf(rRec.nCols );
+ sTmp += OUString::valueOf(rRec.nCols );sTmp += sColon;
+ sTmp += OUString::valueOf(rRec.nRows );
pValues[nProp].Value <<= sTmp;
}
break;