diff options
author | Alexander Wilms <f.alexander.wilms@gmail.com> | 2014-02-25 19:06:16 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-01 09:51:32 -0600 |
commit | 8792ec7b2129650777b7b4bfacaa7c13d923279b (patch) | |
tree | f181e37b61533b460397cc68625fd21f46bb6393 /include/comphelper/numberedcollection.hxx | |
parent | dff29fadfe418421f2af9fd4f1dccc8a9b4cd545 (diff) |
Remove visual noise from include
Conflicts:
include/framework/preventduplicateinteraction.hxx
include/sfx2/sfxbasecontroller.hxx
include/sfx2/sfxbasemodel.hxx
include/toolkit/awt/vclxtabpagemodel.hxx
include/vcl/field.hxx
include/vcl/settings.hxx
Change-Id: Ibccf9f88c68267a3d7e656012b51eaf644c418c2
Reviewed-on: https://gerrit.libreoffice.org/8272
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/comphelper/numberedcollection.hxx')
-rw-r--r-- | include/comphelper/numberedcollection.hxx | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/include/comphelper/numberedcollection.hxx b/include/comphelper/numberedcollection.hxx index 7d4e1328529b..7e1b549e91fa 100644 --- a/include/comphelper/numberedcollection.hxx +++ b/include/comphelper/numberedcollection.hxx @@ -48,7 +48,7 @@ namespace comphelper{ class COMPHELPER_DLLPUBLIC NumberedCollection : private ::cppu::BaseMutex , public ::cppu::WeakImplHelper1< css::frame::XUntitledNumbers > { - //------------------------------------------- + // types, const private: @@ -66,21 +66,21 @@ class COMPHELPER_DLLPUBLIC NumberedCollection : private ::cppu::BaseMutex typedef ::std::vector< long > TDeadItemList; - //------------------------------------------- + // interface public: - //--------------------------------------- + /** @short lightweight constructor. */ NumberedCollection(); - //--------------------------------------- + /** @short free all internally used resources. */ virtual ~NumberedCollection(); - //--------------------------------------- + /** set an outside component which uses this container and must be set as source of all broadcasted messages, exceptions. @@ -94,7 +94,7 @@ class COMPHELPER_DLLPUBLIC NumberedCollection : private ::cppu::BaseMutex */ void setOwner (const css::uno::Reference< css::uno::XInterface >& xOwner); - //--------------------------------------- + /** set the localized prefix to be used for untitled components. Localization has to be done outside. This container will return @@ -106,34 +106,34 @@ class COMPHELPER_DLLPUBLIC NumberedCollection : private ::cppu::BaseMutex */ void setUntitledPrefix(const OUString& sPrefix); - //--------------------------------------- + /** @see css.frame.XUntitledNumbers */ virtual ::sal_Int32 SAL_CALL leaseNumber(const css::uno::Reference< css::uno::XInterface >& xComponent) throw (css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception ); - //--------------------------------------- + /** @see css.frame.XUntitledNumbers */ virtual void SAL_CALL releaseNumber(::sal_Int32 nNumber) throw (css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception ); - //--------------------------------------- + /** @see css.frame.XUntitledNumbers */ virtual void SAL_CALL releaseNumberForComponent(const css::uno::Reference< css::uno::XInterface >& xComponent) throw (css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception ); - //--------------------------------------- + /** @see css.frame.XUntitledNumbers */ virtual OUString SAL_CALL getUntitledPrefix() throw (css::uno::RuntimeException, std::exception); - //------------------------------------------- + // internal private: - //--------------------------------------- + /** @short trys to find an unique number not already used within this collection. @descr It reuses the smalles number which isnt used by any component @@ -155,7 +155,7 @@ class COMPHELPER_DLLPUBLIC NumberedCollection : private ::cppu::BaseMutex void impl_cleanUpDeadItems ( TNumberedItemHash& lItems , const TDeadItemList& lDeadItems); - //------------------------------------------- + // member private: |