diff options
author | Maho Nakata <maho@FreeBSD.org> | 2008-03-28 22:26:03 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2008-03-28 22:26:03 +0000 |
commit | eb722ebfb39182970b996210d6ee6b0fe8c28e61 (patch) | |
tree | 0a736af175254bcecbbea68e126410a80fef9782 /editors/openoffice-3/files/patch-i84586 | |
parent | be2e8cdfaf4352a6cd0ef5fe468460ce99a0859b (diff) |
Notes
Diffstat (limited to 'editors/openoffice-3/files/patch-i84586')
-rw-r--r-- | editors/openoffice-3/files/patch-i84586 | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/editors/openoffice-3/files/patch-i84586 b/editors/openoffice-3/files/patch-i84586 new file mode 100644 index 000000000000..7b624c3f77f1 --- /dev/null +++ b/editors/openoffice-3/files/patch-i84586 @@ -0,0 +1,43 @@ +? sc/unxfbsdi.pro +Index: sc/source/ui/vba/vbaaxis.cxx +=================================================================== +RCS file: /cvs/sc/sc/source/ui/vba/vbaaxis.cxx,v +retrieving revision 1.2 +diff -u -r1.2 vbaaxis.cxx +--- sc/source/ui/vba/vbaaxis.cxx 7 Dec 2007 10:43:48 -0000 1.2 ++++ sc/source/ui/vba/vbaaxis.cxx 14 Dec 2007 23:40:31 -0000 +@@ -47,8 +47,8 @@ + + const rtl::OUString ORIGIN( RTL_CONSTASCII_USTRINGPARAM("Origin") ); + const rtl::OUString AUTOORIGIN( RTL_CONSTASCII_USTRINGPARAM("AutoOrigin") ); +-const rtl::OUString MIN( RTL_CONSTASCII_USTRINGPARAM("AutoOrigin") ); +-const rtl::OUString MAX( RTL_CONSTASCII_USTRINGPARAM("AutoOrigin") ); ++const rtl::OUString VBA_MIN( RTL_CONSTASCII_USTRINGPARAM("AutoOrigin") ); ++const rtl::OUString VBA_MAX( RTL_CONSTASCII_USTRINGPARAM("AutoOrigin") ); + ScVbaChart* + ScVbaAxis::getChartPtr() throw( uno::RuntimeException ) + { +@@ -142,12 +142,12 @@ + bCrossesAreCustomized = sal_False; + return; + case xlAxisCrossesMinimum: // The axis crosses at the minimum value. +- mxPropertySet->getPropertyValue(MIN) >>= fNum; ++ mxPropertySet->getPropertyValue(VBA_MIN) >>= fNum; + setCrossesAt( fNum ); + bCrossesAreCustomized = sal_False; + break; + case xlAxisCrossesMaximum: // The axis crosses at the maximum value. +- mxPropertySet->getPropertyValue(MAX) >>= fNum; ++ mxPropertySet->getPropertyValue(VBA_MAX) >>= fNum; + setCrossesAt(fNum); + bCrossesAreCustomized = sal_False; + break; +@@ -182,7 +182,7 @@ + mxPropertySet->getPropertyValue(ORIGIN) >>= forigin; + //obsolete double fmax = AnyConverter.toDouble(mxPropertySet.getPropertyValue("Max")); + double fmin = 0.0; +- mxPropertySet->getPropertyValue(MIN) >>= fmin; ++ mxPropertySet->getPropertyValue(VBA_MIN) >>= fmin; + if (forigin == fmin) + nCrosses = xlAxisCrossesMinimum; + else |