[Libreoffice-commits] .: Branch 'libreoffice-3-6' - sc/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Fri Oct 19 01:21:03 PDT 2012


 sc/source/core/data/column3.cxx |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit 637096b75f2989640967e72aee41e48b07a5a602
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Wed Oct 17 12:28:27 2012 +0200

    ignore broadcaster cells to fill autofilter dialog, fdo#55712
    
    Change-Id: Iacd3f8cfc26bb147eaf3b6957338be212b448226
    (cherry picked from commit 622f7751b78fd8584e34f5fa96a04ed6e8bb98f5)
    
    Signed-off-by: David Tardon <dtardon at redhat.com>

diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx
index 48d77dc..475299d 100644
--- a/sc/source/core/data/column3.cxx
+++ b/sc/source/core/data/column3.cxx
@@ -1501,6 +1501,10 @@ void ScColumn::GetFilterEntries(SCROW nStartRow, SCROW nEndRow, std::vector<ScTy
             }
             break;
 
+            // skip broadcaster cells
+            case CELLTYPE_NOTE:
+                continue;
+
             default:
                 ;
         }


More information about the Libreoffice-commits mailing list