diff options
Diffstat (limited to 'svx/source/table/tablecolumn.cxx')
-rw-r--r-- | svx/source/table/tablecolumn.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/table/tablecolumn.cxx b/svx/source/table/tablecolumn.cxx index 1b0aa1706596..9e558bdb9719 100644 --- a/svx/source/table/tablecolumn.cxx +++ b/svx/source/table/tablecolumn.cxx @@ -264,17 +264,17 @@ rtl::Reference< FastPropertySetInfo > TableColumn::getStaticPropertySetInfo() aProperties[1].Name = "OptimalWidth"; aProperties[1].Handle = Property_OptimalWidth; - aProperties[1].Type = ::getBooleanCppuType(); + aProperties[1].Type = cppu::UnoType<bool>::get(); aProperties[1].Attributes = 0; aProperties[2].Name = "IsVisible"; aProperties[2].Handle = Property_IsVisible; - aProperties[2].Type = ::getBooleanCppuType(); + aProperties[2].Type = cppu::UnoType<bool>::get(); aProperties[2].Attributes = 0; aProperties[3].Name = "IsStartOfNewPage"; aProperties[3].Handle = Property_IsStartOfNewPage; - aProperties[3].Type = ::getBooleanCppuType(); + aProperties[3].Type = cppu::UnoType<bool>::get(); aProperties[3].Attributes = 0; aProperties[4].Name = "Size"; @@ -284,7 +284,7 @@ rtl::Reference< FastPropertySetInfo > TableColumn::getStaticPropertySetInfo() aProperties[5].Name = "OptimalSize"; aProperties[5].Handle = Property_OptimalWidth; - aProperties[5].Type = ::getBooleanCppuType(); + aProperties[5].Type = cppu::UnoType<bool>::get(); aProperties[5].Attributes = 0; xInfo.set( new FastPropertySetInfo(aProperties) ); |