diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2014-11-09 22:59:41 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2014-11-09 23:00:23 +0100 |
commit | 167a0383f0064372ad36d08f6318385adaacc6dc (patch) | |
tree | c2de2a70eacf962b21780d421c0c5ef6ef9c81c5 /sw | |
parent | bb95f7e6f7c9b1281875e6d729b66b6018794ee0 (diff) |
avoid unused argument warning
Change-Id: Ib67b804423b521407710f8319cb89977e44494cc
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/layout/frmtool.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/source/core/layout/frmtool.cxx b/sw/source/core/layout/frmtool.cxx index 8f714b5a1745..a3dc23f34824 100644 --- a/sw/source/core/layout/frmtool.cxx +++ b/sw/source/core/layout/frmtool.cxx @@ -1014,6 +1014,8 @@ void AppendObjs( const SwFrmFmts *pTbl, sal_uLong nIndex, checkFmts.push_back( pFmt ); } } +#else + (void)pTbl; #endif SwFrmFmtAnchorMap::const_iterator_pair range = doc->GetFrmFmtAnchorMap()->equal_range( SwNodeIndex( doc->GetNodes(), nIndex )); for( std::multimap< SwNodeIndex, SwFrmFmt* >::const_iterator it = range.first; |