summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-06-23 10:31:17 +0200
committerJulien Nabet <serval2412@yahoo.fr>2013-06-23 10:31:30 +0200
commit3dac2c4b5d6aab37181cf6b113ec1a6732c2d2da (patch)
treea96074bef7995058f675b7791f36621ca6bca948 /writerfilter
parent0e7237e76215f06f5aee8354b2a06078bf34f5dc (diff)
cppcheck: fix inefficient checking
Change-Id: If015900345304a9545ab0b66c6998a9d6bad9d1f
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/rtftok/rtfdocumentimpl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index 2a33d962b0ce..7c4f5455ed15 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -513,7 +513,7 @@ void RTFDocumentImpl::sectBreak(bool bFinal = false)
dispatchFlag(RTF_PARD);
dispatchSymbol(RTF_PAR);
}
- while (m_nHeaderFooterPositions.size())
+ while (!m_nHeaderFooterPositions.empty())
{
std::pair<Id, sal_uInt32> aPair = m_nHeaderFooterPositions.front();
m_nHeaderFooterPositions.pop();
@@ -4563,7 +4563,7 @@ int RTFDocumentImpl::popState()
case DESTINATION_SHPPICT:
case DESTINATION_SHAPE:
m_aStates.top().aFrame = aState.aFrame;
- if (aState.nDestinationState == DESTINATION_SHPPICT && m_aStates.size() && m_aStates.top().nDestinationState == DESTINATION_LISTPICTURE)
+ if (aState.nDestinationState == DESTINATION_SHPPICT && !m_aStates.empty() && m_aStates.top().nDestinationState == DESTINATION_LISTPICTURE)
{
RTFSprms aAttributes;
aAttributes.set(NS_ooxml::LN_CT_NumPicBullet_numPicBulletId, RTFValue::Pointer_t(new RTFValue(m_nListPictureId++)));
@@ -4609,7 +4609,7 @@ int RTFDocumentImpl::popState()
m_bHasFootnote = false;
}
- if (m_aStates.size())
+ if (!m_aStates.empty())
{
m_aStates.top().nCells = aState.nCells;
m_aStates.top().aTableCellsSprms = aState.aTableCellsSprms;