diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-04-30 05:32:26 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-04-30 06:14:12 +0300 |
commit | d1ca0f4ed0e30394ce6759a20d4896651dd43051 (patch) | |
tree | af9def17a770c6399e18965c9fb9f3bb4b91b702 /include/framework | |
parent | 0d341d28f73603670e3b8c639c583229d3c723a6 (diff) |
Bin some pointless comments and reduce some vertical whitespace
Bin pointless '// predeclarations' or '// forward declarations' comments. If
a programmer doesn't know what a forward declaration is, well, why read C++
source code?
Also bin some pointless '// end of namespace foo' comments after namespace
blocks just a handful of lines long, and some superfluous vertical whitespace.
Change-Id: I2a31c5d73d9b4de8825fb8eb9e7559dbd7303ef9
Diffstat (limited to 'include/framework')
-rw-r--r-- | include/framework/addonsoptions.hxx | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/include/framework/addonsoptions.hxx b/include/framework/addonsoptions.hxx index 7edf6baf3da1..4cb339a3089f 100644 --- a/include/framework/addonsoptions.hxx +++ b/include/framework/addonsoptions.hxx @@ -28,9 +28,6 @@ #include <com/sun/star/beans/PropertyValue.hpp> #include <framework/fwedllapi.h> -// types, enums, ... - - /*-************************************************************************************************************ @descr The method GetAddonsMenu() returns a list of property values. Use follow defines to separate values by names. @@ -49,7 +46,6 @@ namespace framework { - struct FWE_DLLPUBLIC MergeMenuInstruction { OUString aMergePoint; @@ -86,10 +82,6 @@ struct FWE_DLLPUBLIC MergeStatusbarInstruction typedef ::std::vector< MergeStatusbarInstruction > MergeStatusbarInstructionContainer; - -// forward declarations - - /*-************************************************************************************************************ @short forward declaration to our private date container implementation @descr We use these class as internal member to support small memory requirements. @@ -106,15 +98,8 @@ class AddonsOptions_Impl; class FWE_DLLPUBLIC AddonsOptions { - - // public methods - - public: - // constructor / destructor - - /*-**************************************************************************************************** @short standard constructor and destructor @descr This will initialize an instance with default values. @@ -129,10 +114,6 @@ class FWE_DLLPUBLIC AddonsOptions AddonsOptions(); ~AddonsOptions(); - - // interface - - /*-**************************************************************************************************** @short clears completely the addons menu @descr Call this methods to clear the addons menu @@ -261,10 +242,6 @@ class FWE_DLLPUBLIC AddonsOptions *//*-*****************************************************************************************************/ DECL_STATIC_LINK( AddonsOptions, Notify, void* ); - - // private member - - private: /*Attention @@ -278,7 +255,7 @@ class FWE_DLLPUBLIC AddonsOptions static AddonsOptions_Impl* m_pDataContainer ; static sal_Int32 m_nRefCount ; -}; // class SvtMenuOptions +}; } |