[Libreoffice-commits] core.git: Branch 'feature/formula-core-rework' - sc/inc sc/source

Kohei Yoshida kohei.yoshida at gmail.com
Fri Mar 15 08:18:23 PDT 2013


 sc/inc/column.hxx               |    2 +-
 sc/source/core/data/column2.cxx |    4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 1facf70e538dfceffcfb448713ff041b5618d651
Author: Kohei Yoshida <kohei.yoshida at gmail.com>
Date:   Fri Mar 15 11:20:19 2013 -0400

    Turn off debugging and silence compiler warning.
    
    Change-Id: If2bfc9f346d7f2eee20caa30e1eb1f60d266ef90

diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx
index 666d067..dd14b6a 100644
--- a/sc/inc/column.hxx
+++ b/sc/inc/column.hxx
@@ -28,7 +28,7 @@
 #include <set>
 #include <vector>
 
-#define DEBUG_COLUMN_STORAGE 1
+#define DEBUG_COLUMN_STORAGE 0
 
 #if DEBUG_COLUMN_STORAGE
 #ifdef NDEBUG
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index f96515a..a1a84bb 100644
--- a/sc/source/core/data/column2.cxx
+++ b/sc/source/core/data/column2.cxx
@@ -1449,10 +1449,12 @@ sal_uInt8 ScColumn::GetScriptType( SCROW nRow ) const
     return SC_SCRIPTTYPE_UNKNOWN;
 }
 
-void ScColumn::SetScriptType( SCROW nRow, sal_uInt8 nType )
+void ScColumn::SetScriptType( SCROW nRow, sal_uInt8 /*nType*/ )
 {
     if (!ValidRow(nRow))
         return;
+
+    // TODO: Implement this.
 }
 
 void ScColumn::FindDataAreaPos(SCROW& rRow, bool bDown) const


More information about the Libreoffice-commits mailing list