summaryrefslogtreecommitdiff
path: root/include/unotools/dynamicmenuoptions.hxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 19:06:16 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-03-01 09:51:32 -0600
commit8792ec7b2129650777b7b4bfacaa7c13d923279b (patch)
treef181e37b61533b460397cc68625fd21f46bb6393 /include/unotools/dynamicmenuoptions.hxx
parentdff29fadfe418421f2af9fd4f1dccc8a9b4cd545 (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/unotools/dynamicmenuoptions.hxx')
-rw-r--r--include/unotools/dynamicmenuoptions.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/unotools/dynamicmenuoptions.hxx b/include/unotools/dynamicmenuoptions.hxx
index 864743eca9c5..7f057e5b8fcf 100644
--- a/include/unotools/dynamicmenuoptions.hxx
+++ b/include/unotools/dynamicmenuoptions.hxx
@@ -26,7 +26,7 @@
#include <com/sun/star/beans/PropertyValue.hpp>
#include <unotools/options.hxx>
-/*-************************************************************************************************************//**
+/*-************************************************************************************************************
@descr The method GetList() returns a list of property values.
Use follow defines to separate values by names.
*//*-*************************************************************************************************************/
@@ -35,7 +35,7 @@
#define DYNAMICMENU_PROPERTYNAME_IMAGEIDENTIFIER OUString("ImageIdentifier")
#define DYNAMICMENU_PROPERTYNAME_TARGETNAME OUString("TargetName")
-/*-************************************************************************************************************//**
+/*-************************************************************************************************************
@descr You can use these enum values to specify right menu if you call our interface methods.
*//*-*************************************************************************************************************/
enum EDynamicMenuType
@@ -45,7 +45,7 @@ enum EDynamicMenuType
E_HELPBOOKMARKS = 2
};
-/*-************************************************************************************************************//**
+/*-************************************************************************************************************
@short forward declaration to our private date container implementation
@descr We use these class as internal member to support small memory requirements.
You can create the container if it is necessary. The class which use these mechanism
@@ -54,7 +54,7 @@ enum EDynamicMenuType
class SvtDynamicMenuOptions_Impl;
-/*-************************************************************************************************************//**
+/*-************************************************************************************************************
@short collect information about dynamic menus
@descr Make it possible to configure dynamic menu structures of menus like "new" or "wizard".
@@ -67,7 +67,7 @@ class SvtDynamicMenuOptions_Impl;
class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtDynamicMenuOptions : public utl::detail::Options
{
public:
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short standard constructor and destructor
@descr This will initialize an instance with default values.
We implement these class with a refcount mechanism! Every instance of this class increase it
@@ -86,7 +86,7 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtDynamicMenuOptions : public utl::det
SvtDynamicMenuOptions();
virtual ~SvtDynamicMenuOptions();
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short return complete specified list
@descr Call it to get all entries of an dynamic menu.
We return a list of all nodes with his names and properties.
@@ -102,7 +102,7 @@ class UNOTOOLS_DLLPUBLIC SAL_WARN_UNUSED SvtDynamicMenuOptions : public utl::det
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > > GetMenu( EDynamicMenuType eMenu ) const;
private:
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short return a reference to a static mutex
@descr These class is partially threadsafe (for de-/initialization only).
All access methods are'nt safe!