diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-15 11:20:19 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-15 11:37:08 -0400 |
commit | 5874231b8a7fc790299e9129684271b5ca70410b (patch) | |
tree | c753bdf3efd2639e8be04340d88c8045e650e3d4 /sc | |
parent | 3a78c5b9898f70ca0163501ae2b583a7cb76d51f (diff) |
Turn off debugging and silence compiler warning.
Change-Id: If2bfc9f346d7f2eee20caa30e1eb1f60d266ef90
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/column.hxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/column2.cxx | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx index 666d067b0b20..dd14b6a896c4 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 f96515a97f53..a1a84bb9107d 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 |