You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by pa...@apache.org on 2012/08/26 19:08:27 UTC

svn commit: r1377458 - /incubator/ooo/trunk/main/sw/source/filter/inc/fltshell.hxx

Author: paveljanik
Date: Sun Aug 26 17:08:27 2012
New Revision: 1377458

URL: http://svn.apache.org/viewvc?rev=1377458&view=rev
Log:
Do not name unused arguments to prevent WaE issues.

Modified:
    incubator/ooo/trunk/main/sw/source/filter/inc/fltshell.hxx

Modified: incubator/ooo/trunk/main/sw/source/filter/inc/fltshell.hxx
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/sw/source/filter/inc/fltshell.hxx?rev=1377458&r1=1377457&r2=1377458&view=diff
==============================================================================
--- incubator/ooo/trunk/main/sw/source/filter/inc/fltshell.hxx (original)
+++ incubator/ooo/trunk/main/sw/source/filter/inc/fltshell.hxx Sun Aug 26 17:08:27 2012
@@ -121,12 +121,12 @@ protected:
 	virtual void SetAttrInDoc(const SwPosition& rTmpPos, SwFltStackEntry* pEntry);
 	//Modify here for #119405, by easyfan, 2012-05-24
 	virtual sal_Int32 GetCurrAttrCP() const {return -1;}
-	virtual bool IsParaEndInCPs(sal_Int32 nStart,sal_Int32 nEnd,bool bSdOD=true) const {return false;}
+	virtual bool IsParaEndInCPs(sal_Int32 /* nStart */,sal_Int32 /* nEnd */,bool /* bSdOD=true */) const {return false;}
 	//End of modification, by easyfan
 	//Modify for #119405 by chengjh, 2012-08-16
 	//Clear the para end position recorded in reader intermittently for the least impact on loading performance
 	virtual void ClearParaEndPosition(){};
-	virtual bool CheckSdOD(sal_Int32 nStart,sal_Int32 nEnd){return false;}
+	virtual bool CheckSdOD(sal_Int32 /* nStart */,sal_Int32 /* nEnd */){return false;}
 	bool HasSdOD();
 	//End