summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/tabview3.cxx
diff options
context:
space:
mode:
authorJustin Malcolm <malcolm.justin@gmail.com>2010-09-28 22:45:09 -0400
committerKohei Yoshida <kyoshida@novell.com>2010-09-28 22:45:09 -0400
commit4c2fcdee1949996c6f63d1f0645e5cb2edf8e00d (patch)
tree09149b91a47819d5a0626a600833b7ac819db626 /sc/source/ui/view/tabview3.cxx
parentc062dad9b1d937a975354ceee75b7f16b756c2d2 (diff)
This gets rid of a great number of the comments
There are a great number of places in calc where code is commented out with lines staring in "//UNUSED". Since 'git' is being used, there is no reason to keep old code like this in comments.
Diffstat (limited to 'sc/source/ui/view/tabview3.cxx')
-rw-r--r--sc/source/ui/view/tabview3.cxx40
1 files changed, 0 insertions, 40 deletions
diff --git a/sc/source/ui/view/tabview3.cxx b/sc/source/ui/view/tabview3.cxx
index 93bf0f8e8f5c..983113760bb9 100644
--- a/sc/source/ui/view/tabview3.cxx
+++ b/sc/source/ui/view/tabview3.cxx
@@ -2162,46 +2162,6 @@ void ScTabView::DoChartSelection(
}
}
-// DrawDragRect - Drag&Drop-Rechteck zeichnen (XOR)
-
-//UNUSED2008-05 void ScTabView::DrawDragRect( SCCOL nStartX, SCROW nStartY, SCCOL nEndX, SCROW nEndY,
-//UNUSED2008-05 ScSplitPos ePos )
-//UNUSED2008-05 {
-//UNUSED2008-05 if ( aViewData.GetHSplitMode() == SC_SPLIT_FIX || aViewData.GetVSplitMode() == SC_SPLIT_FIX )
-//UNUSED2008-05 {
-//UNUSED2008-05 for (USHORT i=0; i<4; i++)
-//UNUSED2008-05 if (pGridWin[i])
-//UNUSED2008-05 if (pGridWin[i]->IsVisible())
-//UNUSED2008-05 pGridWin[i]->DrawDragRect( nStartX, nStartY, nEndX, nEndY );
-//UNUSED2008-05 }
-//UNUSED2008-05 else
-//UNUSED2008-05 pGridWin[ePos]->DrawDragRect( nStartX, nStartY, nEndX, nEndY );
-//UNUSED2008-05 }
-//UNUSED2008-05
-//UNUSED2008-05 // PaintCell - einzelne Zelle neu zeichnen
-//UNUSED2008-05
-//UNUSED2008-05 void ScTabView::PaintCell( SCCOL nCol, SCROW nRow, SCTAB nTab )
-//UNUSED2008-05 {
-//UNUSED2008-05 if ( aViewData.GetTabNo() == nTab )
-//UNUSED2008-05 {
-//UNUSED2008-05 USHORT i;
-//UNUSED2008-05 for (i=0; i<4; i++)
-//UNUSED2008-05 if (pGridWin[i])
-//UNUSED2008-05 if (pGridWin[i]->IsVisible())
-//UNUSED2008-05 pGridWin[i]->Draw( nCol, nRow, nCol, nRow );
-//UNUSED2008-05 }
-//UNUSED2008-05 }
-//UNUSED2008-05
-//UNUSED2008-05 void ScTabView::PaintLeftRow( SCROW nRow )
-//UNUSED2008-05 {
-//UNUSED2008-05 PaintLeftArea( nRow, nRow );
-//UNUSED2008-05 }
-//UNUSED2008-05
-//UNUSED2008-05 void ScTabView::PaintTopCol( SCCOL nCol )
-//UNUSED2008-05 {
-//UNUSED2008-05 PaintTopArea( nCol, nCol );
-//UNUSED2008-05 }
-
// PaintGrid - Datenbereiche neu zeichnen
void ScTabView::PaintGrid()