[ooo-build-commit] .: patches/dev300

Kohei Yoshida kohei at kemper.freedesktop.org
Fri Oct 1 19:37:34 PDT 2010


 patches/dev300/apply                             |    3 --
 patches/dev300/calc-toggle-relative-ref-fix.diff |   28 -----------------------
 2 files changed, 31 deletions(-)

New commits:
commit 62d3fd266640006e110023e7730aab1b06927081
Author: Kohei Yoshida <kyoshida at novell.com>
Date:   Fri Oct 1 22:37:16 2010 -0400

    Removed calc-toggle-relative-ref-fix.diff; moved to git.

diff --git a/patches/dev300/apply b/patches/dev300/apply
index fc521e4..e28e647 100644
--- a/patches/dev300/apply
+++ b/patches/dev300/apply
@@ -2897,8 +2897,5 @@ oox-pptx-import-fix-text-body-properties.diff, n#621744, rodo
 # Fix the bug that caused cell content to disappear under certain conditions.
 calc-cell-270-degree-fix.diff, n#640128, kohei
 
-# Fix failure to toggle relative/absolute references via Shift-F4.
-calc-toggle-relative-ref-fix.diff, n#634260, kohei
-
 # Fix performance bug on row height adjustments during ods import.
 calc-perf-ods-import-row-heights.diff, n#640112, kohei
diff --git a/patches/dev300/calc-toggle-relative-ref-fix.diff b/patches/dev300/calc-toggle-relative-ref-fix.diff
deleted file mode 100644
index 1cd0fd9..0000000
--- a/patches/dev300/calc-toggle-relative-ref-fix.diff
+++ /dev/null
@@ -1,28 +0,0 @@
-diff --git sc/source/core/tool/reffind.cxx sc/source/core/tool/reffind.cxx
-index 5e30e16..166833d 100644
---- sc/source/core/tool/reffind.cxx
-+++ sc/source/core/tool/reffind.cxx
-@@ -43,14 +43,21 @@
- 
- //	incl. Doppelpunkt -> Doppelte Referenzen werden einzeln behandelt
- const sal_Unicode __FAR_DATA ScRefFinder::pDelimiters[] = {
--    '=','(',')',';','+','-','*','/','^','&',' ','{','}','<','>',':', 0
-+    '=','(',')','+','-','*','/','^','&',' ','{','}','<','>',':', 0
- };
- 
- // =======================================================================
- 
- inline BOOL IsText( sal_Unicode c )
- {
--    return !ScGlobal::UnicodeStrChr( ScRefFinder::pDelimiters, c );
-+    bool bFound = ScGlobal::UnicodeStrChr( ScRefFinder::pDelimiters, c );
-+    if (bFound)
-+        // This is one of delimiters, therefore not text.
-+        return false;
-+
-+    // argument separator is configurable.
-+    const sal_Unicode sep = ScCompiler::GetNativeSymbol(ocSep).GetChar(0);
-+    return c != sep;
- }
- 
- inline BOOL IsText( BOOL& bQuote, sal_Unicode c )


More information about the ooo-build-commit mailing list