summaryrefslogtreecommitdiff
path: root/svx/source/inc/fmcontrollayout.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-02-07 12:31:07 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-02-07 12:36:03 +0100
commit6e26cc140bf0254a88a1d4c6e82cbaee39ced418 (patch)
tree4c9a62c32f7b9df3618ab502a08d1a0829d81c03 /svx/source/inc/fmcontrollayout.hxx
parentf862290c91e66b859504e6c271309f73fa762a0d (diff)
loplugin:deletedspecial
Change-Id: I1ffc6af694367f0ff70b7598c093203f1f68882c
Diffstat (limited to 'svx/source/inc/fmcontrollayout.hxx')
-rw-r--r--svx/source/inc/fmcontrollayout.hxx22
1 files changed, 6 insertions, 16 deletions
diff --git a/svx/source/inc/fmcontrollayout.hxx b/svx/source/inc/fmcontrollayout.hxx
index 422763c957fd..b717c8f6cb37 100644
--- a/svx/source/inc/fmcontrollayout.hxx
+++ b/svx/source/inc/fmcontrollayout.hxx
@@ -29,24 +29,23 @@
namespace svxform
{
- class ControlLayouter
+ namespace ControlLayouter
{
- public:
/** initializes the layout of a newly created form control (model)
*/
- static void initializeControlLayout(
+ void initializeControlLayout(
const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxControlModel,
DocumentType _eDocType
);
/** determines whether for the given document type, dynamic control border coloring is enabled
*/
- static bool useDynamicBorderColor( DocumentType _eDocType );
+ bool useDynamicBorderColor( DocumentType _eDocType );
/** determines whether for the given document type, form controls should use the document's reference device
for text rendering
*/
- static bool useDocumentReferenceDevice( DocumentType _eDocType );
+ bool useDocumentReferenceDevice( DocumentType _eDocType );
/** gets the "default" style in a document which can be used if some default text format is needed
@@ -56,18 +55,9 @@ namespace svxform
@param _rxModel
a form component.
*/
- static ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >
+ ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >
getDefaultDocumentTextStyle( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxModel );
-
- private:
- ControlLayouter(); // never implemented
-
- private:
- static ::utl::OConfigurationNode
- getLayoutSettings(
- DocumentType _eDocType
- );
- };
+ }
} // namespace svxform