diff options
Diffstat (limited to 'extensions/source/propctrlr/inspectormodelbase.cxx')
-rw-r--r-- | extensions/source/propctrlr/inspectormodelbase.cxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/extensions/source/propctrlr/inspectormodelbase.cxx b/extensions/source/propctrlr/inspectormodelbase.cxx index e768d7d2da4f..4fd00b207435 100644 --- a/extensions/source/propctrlr/inspectormodelbase.cxx +++ b/extensions/source/propctrlr/inspectormodelbase.cxx @@ -25,10 +25,10 @@ #include <comphelper/propertycontainerhelper.hxx> #include <cppuhelper/supportsservice.hxx> -//........................................................................ + namespace pcr { -//........................................................................ + #define MODEL_PROPERTY_ID_HAS_HELP_SECTION 2000 #define MODEL_PROPERTY_ID_MIN_HELP_TEXT_LINES 2001 @@ -49,9 +49,9 @@ namespace pcr namespace PropertyAttribute = ::com::sun::star::beans::PropertyAttribute; - //==================================================================== + //= InspectorModelProperties - //==================================================================== + /** helper class for implementing the property set related functionality of an ImplInspectorModel */ @@ -87,9 +87,9 @@ namespace pcr void constructWithHelpSection( sal_Int32 _nMinHelpTextLines, sal_Int32 _nMaxHelpTextLines ); }; - //==================================================================== + //= InspectorModelProperties - //==================================================================== + InspectorModelProperties::InspectorModelProperties( ::osl::Mutex& _rMutex ) :m_rMutex( _rMutex ) @@ -154,9 +154,9 @@ namespace pcr return ::cppu::OPropertySetHelper::createPropertySetInfo( getInfoHelper() ); } - //==================================================================== + //= ImplInspectorModel - //==================================================================== + ImplInspectorModel::ImplInspectorModel() :ImplInspectorModel_PBase( GetBroadcastHelper() ) ,m_pProperties( new InspectorModelProperties( m_aMutex ) ) @@ -245,8 +245,8 @@ namespace pcr m_pProperties->constructWithHelpSection( _nMinHelpTextLines, _nMaxHelpTextLines ); } -//........................................................................ + } // namespace pcr -//........................................................................ + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |