Author: paveljanik
Date: Fri May 17 08:04:41 2013
New Revision: 1483683

URL: http://svn.apache.org/r1483683
Log:
Unname unused arguments to prevent compiler warnings.

Modified:
    openoffice/trunk/main/svx/source/sidebar/nbdtmg.cxx

Modified: openoffice/trunk/main/svx/source/sidebar/nbdtmg.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svx/source/sidebar/nbdtmg.cxx?rev=1483683&r1=1483682&r2=1483683&view=diff
==============================================================================
--- openoffice/trunk/main/svx/source/sidebar/nbdtmg.cxx (original)
+++ openoffice/trunk/main/svx/source/sidebar/nbdtmg.cxx Fri May 17 08:04:41 2013
@@ -478,7 +478,7 @@ sal_Bool BulletsTypeMgr::RelplaceNumRule
        return sal_True;
 }
 
-sal_Bool BulletsTypeMgr::ApplyNumRule(SvxNumRule& aNum,sal_uInt16 
nIndex,sal_uInt16 mLevel,sal_Bool isDefault,sal_Bool isResetSize)
+sal_Bool BulletsTypeMgr::ApplyNumRule(SvxNumRule& aNum,sal_uInt16 
nIndex,sal_uInt16 mLevel,sal_Bool /* isDefault */,sal_Bool isResetSize)
 {
        //if ( mLevel == (sal_uInt16)0xFFFF )
        //      return sal_False;
@@ -529,7 +529,7 @@ sal_Bool BulletsTypeMgr::ApplyNumRule(Sv
        return sal_True;
 }
 
-String BulletsTypeMgr::GetDescription(sal_uInt16 nIndex,sal_Bool isDefault)
+String BulletsTypeMgr::GetDescription(sal_uInt16 nIndex,sal_Bool /* isDefault 
*/)
 {
        String sRet;
        //sal_uInt16 nLength = 0;
@@ -657,7 +657,7 @@ void GraphyicBulletsTypeMgr::Init()
                aGrfDataLst.Insert( pEntry, LIST_APPEND );
        }
 }
-sal_uInt16 GraphyicBulletsTypeMgr::GetNBOIndexForNumRule(SvxNumRule& 
aNum,sal_uInt16 mLevel,sal_uInt16 nFromIndex)
+sal_uInt16 GraphyicBulletsTypeMgr::GetNBOIndexForNumRule(SvxNumRule& 
aNum,sal_uInt16 mLevel,sal_uInt16 /* nFromIndex */)
 {      
        if ( mLevel == (sal_uInt16)0xFFFF || mLevel == 0)
                return (sal_uInt16)0xFFFF;
@@ -741,7 +741,7 @@ sal_Bool GraphyicBulletsTypeMgr::Relplac
        return sal_True;
 }
 
-sal_Bool GraphyicBulletsTypeMgr::ApplyNumRule(SvxNumRule& aNum,sal_uInt16 
nIndex,sal_uInt16 mLevel,sal_Bool isDefault,sal_Bool isResetSize)
+sal_Bool GraphyicBulletsTypeMgr::ApplyNumRule(SvxNumRule& aNum,sal_uInt16 
nIndex,sal_uInt16 mLevel,sal_Bool /* isDefault */,sal_Bool /* isResetSize */)
 {
        //if ( mLevel == (sal_uInt16)0xFFFF )
        //      return sal_False;
@@ -786,7 +786,7 @@ sal_Bool GraphyicBulletsTypeMgr::ApplyNu
                
        return sal_True;
 }
-String GraphyicBulletsTypeMgr::GetDescription(sal_uInt16 nIndex,sal_Bool 
isDefault)
+String GraphyicBulletsTypeMgr::GetDescription(sal_uInt16 nIndex,sal_Bool /* 
isDefault */)
 {
        String sRet;
        sal_uInt16 nLength = 0;
@@ -1780,7 +1780,7 @@ void OutlineTypeMgr::Init()
        }
 }
 
-sal_uInt16 OutlineTypeMgr::GetNBOIndexForNumRule(SvxNumRule& aNum,sal_uInt16 
mLevel,sal_uInt16 nFromIndex)
+sal_uInt16 OutlineTypeMgr::GetNBOIndexForNumRule(SvxNumRule& aNum,sal_uInt16 
/* mLevel */,sal_uInt16 nFromIndex)
 {      
        sal_uInt16 nLength = 
sizeof(pOutlineSettingsArrs)/sizeof(OutlineSettings_Impl*);
        for(sal_uInt16 iDex = nFromIndex; iDex < nLength; iDex++)
@@ -1926,7 +1926,7 @@ sal_Bool OutlineTypeMgr::RelplaceNumRule
        return sal_True;                
 }
 
-sal_Bool OutlineTypeMgr::ApplyNumRule(SvxNumRule& aNum,sal_uInt16 
nIndex,sal_uInt16 mLevel,sal_Bool isDefault,sal_Bool isResetSize)
+sal_Bool OutlineTypeMgr::ApplyNumRule(SvxNumRule& aNum,sal_uInt16 
nIndex,sal_uInt16 /* mLevel */,sal_Bool isDefault,sal_Bool isResetSize)
 {
        //if ( mLevel == (sal_uInt16)0xFFFF )
        //      return sal_False;


Reply via email to