summaryrefslogtreecommitdiff
path: root/svtools/source/table
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/table')
-rw-r--r--svtools/source/table/tablecontrol_impl.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/table/tablecontrol_impl.cxx b/svtools/source/table/tablecontrol_impl.cxx
index a9a7607a5c93..2d2bf0166586 100644
--- a/svtools/source/table/tablecontrol_impl.cxx
+++ b/svtools/source/table/tablecontrol_impl.cxx
@@ -502,13 +502,13 @@ namespace svt { namespace table
void TableControl_Impl::columnChanged( ColPos const i_column, ColumnAttributeGroup const i_attributeGroup )
{
ColumnAttributeGroup nGroup( i_attributeGroup );
- if ( nGroup & COL_ATTRS_APPEARANCE )
+ if ( nGroup & ColumnAttributeGroup::APPEARANCE )
{
impl_invalidateColumn( i_column );
- nGroup &= ~COL_ATTRS_APPEARANCE;
+ nGroup &= ~ColumnAttributeGroup::APPEARANCE;
}
- if ( nGroup & COL_ATTRS_WIDTH )
+ if ( nGroup & ColumnAttributeGroup::WIDTH )
{
if ( !m_bUpdatingColWidths )
{
@@ -516,10 +516,10 @@ namespace svt { namespace table
invalidate( TableAreaAll );
}
- nGroup &= ~COL_ATTRS_WIDTH;
+ nGroup &= ~ColumnAttributeGroup::WIDTH;
}
- OSL_ENSURE( ( nGroup == COL_ATTRS_NONE ) || ( i_attributeGroup == COL_ATTRS_ALL ),
+ OSL_ENSURE( ( nGroup == ColumnAttributeGroup::NONE ) || ( i_attributeGroup == ColumnAttributeGroup::ALL ),
"TableControl_Impl::columnChanged: don't know how to handle this change!" );
}