diff options
author | David Tardon <dtardon@redhat.com> | 2010-12-23 11:20:04 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2010-12-23 11:20:04 +0100 |
commit | bfe7aa7040eb7bfdfbf657d27000931f93ddc438 (patch) | |
tree | 4cfdcc4dd03a410b54a5e23a2ef4b89692ea73d9 /svtools | |
parent | 51437a153e738166278901e48caaa5a554c73c06 (diff) |
suppress compiler warning
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/table/tablecontrol_impl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/table/tablecontrol_impl.cxx b/svtools/source/table/tablecontrol_impl.cxx index 212502416527..d7c15d8d67f4 100644 --- a/svtools/source/table/tablecontrol_impl.cxx +++ b/svtools/source/table/tablecontrol_impl.cxx @@ -328,7 +328,7 @@ namespace svt { namespace table if ( m_pModel->getRowCount() != m_nRowCount ) return "row counts are inconsistent!"; - if ( ( m_nCurColumn != COL_INVALID ) && !m_aColumnWidthsPixel.empty() && ( m_nCurColumn < 0 ) || ( m_nCurColumn >= (ColPos)m_aColumnWidthsPixel.size() ) ) + if ( ( ( m_nCurColumn != COL_INVALID ) && !m_aColumnWidthsPixel.empty() && ( m_nCurColumn < 0 ) ) || ( m_nCurColumn >= (ColPos)m_aColumnWidthsPixel.size() ) ) return "current column is invalid!"; if ( m_aColumnWidthsPixel.size() != m_aAccColumnWidthsPixel.size() ) |