[ooo-build-commit] Branch 'ooo-build-3-1-1' - patches/dev300
Kohei Yoshida
kohei at kemper.freedesktop.org
Mon Aug 10 21:53:18 PDT 2009
patches/dev300/calc-external-ref-decode-unicode-uri.diff | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 646ba1d7b78a73ab1a000c46ce62471d4909b4b4
Author: Kohei Yoshida <kyoshida at novell.com>
Date: Tue Aug 11 00:52:35 2009 -0400
Fixed unicode display issue for Excel A1 and R1C1.
* patches/dev300/calc-external-ref-decode-unicode-uri.diff:
diff --git a/patches/dev300/calc-external-ref-decode-unicode-uri.diff b/patches/dev300/calc-external-ref-decode-unicode-uri.diff
index 2643b9d..5c14fd5 100644
--- a/patches/dev300/calc-external-ref-decode-unicode-uri.diff
+++ b/patches/dev300/calc-external-ref-decode-unicode-uri.diff
@@ -205,7 +205,7 @@ index bbb62c0..f89d00b 100644
- ConventionXL::makeExternalDocStr(rBuffer, *pFullName);
+ ConventionXL::makeExternalDocStr(
-+ rBuffer, *pFullName, rCompiler.GetEncodeUrlMode() != ScCompiler::ENCODE_NEVER);
++ rBuffer, *pFullName, rCompiler.GetEncodeUrlMode() == ScCompiler::ENCODE_ALWAYS);
ScRangeStringConverter::AppendTableName(rBuffer, rTabName);
rBuffer.append(sal_Unicode('!'));
@@ -215,7 +215,7 @@ index bbb62c0..f89d00b 100644
- ConventionXL::makeExternalDocStr(rBuffer, *pFullName);
+ ConventionXL::makeExternalDocStr(
-+ rBuffer, *pFullName, rCompiler.GetEncodeUrlMode() != ScCompiler::ENCODE_NEVER);
++ rBuffer, *pFullName, rCompiler.GetEncodeUrlMode() == ScCompiler::ENCODE_ALWAYS);
ConventionXL::makeExternalTabNameRange(rBuffer, rTabName, aTabNames, aRef);
rBuffer.append(sal_Unicode('!'));
@@ -225,7 +225,7 @@ index bbb62c0..f89d00b 100644
- ConventionXL::makeExternalDocStr(rBuffer, *pFullName);
+ ConventionXL::makeExternalDocStr(
-+ rBuffer, *pFullName, rCompiler.GetEncodeUrlMode() != ScCompiler::ENCODE_NEVER);
++ rBuffer, *pFullName, rCompiler.GetEncodeUrlMode() == ScCompiler::ENCODE_ALWAYS);
ScRangeStringConverter::AppendTableName(rBuffer, rTabName);
rBuffer.append(sal_Unicode('!'));
@@ -235,7 +235,7 @@ index bbb62c0..f89d00b 100644
- ConventionXL::makeExternalDocStr(rBuffer, *pFullName);
+ ConventionXL::makeExternalDocStr(
-+ rBuffer, *pFullName, rCompiler.GetEncodeUrlMode() != ScCompiler::ENCODE_NEVER);
++ rBuffer, *pFullName, rCompiler.GetEncodeUrlMode() == ScCompiler::ENCODE_ALWAYS);
ConventionXL::makeExternalTabNameRange(rBuffer, rTabName, aTabNames, aRef);
rBuffer.append(sal_Unicode('!'));
More information about the ooo-build-commit
mailing list