From 2ab03deceb3343ca85fe0d87d952329d6ec3dde5 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Tue, 23 Feb 2010 19:04:41 -0500 Subject: calctabcolor: Use STL's container instead of using an internal List. We should avoid using List at all cost! --- sc/source/ui/inc/docfunc.hxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sc/source/ui/inc/docfunc.hxx') diff --git a/sc/source/ui/inc/docfunc.hxx b/sc/source/ui/inc/docfunc.hxx index 11e8914dd14e..a186ebabdae5 100644 --- a/sc/source/ui/inc/docfunc.hxx +++ b/sc/source/ui/inc/docfunc.hxx @@ -122,8 +122,7 @@ public: BOOL DeleteTable( SCTAB nTab, BOOL bRecord, BOOL bApi ); bool SetTabBgColor( SCTAB nTab, const Color& rColor, bool bRecord, bool bApi ); - bool SetTabBgColor( ScUndoSetTabBgColorInfoList* rUndoSetTabBgColorInfoList, - bool bRecord, bool bApi ); + bool SetTabBgColor( ScUndoSetTabBgColorInfoList& rUndoTabColorList, bool bRecord, bool bApi ); BOOL SetTableVisible( SCTAB nTab, BOOL bVisible, BOOL bApi ); -- cgit