summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGülşah Köse <gulsah.kose@collabora.com>2019-05-28 15:55:11 +0300
committerMiklos Vajna <vmiklos@collabora.com>2019-05-29 08:55:37 +0200
commite17224e2aa0e53b1e5518ce3c2a2baa174aad265 (patch)
tree640e3365a8f1a661c9964322439d2bdd910dfe90
parent2828e3c8ec3b336bc02e7e3b6d9b5c41fc5be306 (diff)
tdf#120905 Add missing doxygen comments.
Change-Id: I3211f32521d578b1a5f72df7c5ccc4267ee01d38 Reviewed-on: https://gerrit.libreoffice.org/73101 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
-rw-r--r--include/cui/cuicharmap.hxx1
-rw-r--r--include/cui/numberingpreview.hxx1
-rw-r--r--include/svx/svxdlg.hxx1
-rw-r--r--sd/source/ui/dlg/sddlgfact.hxx1
-rw-r--r--sd/source/ui/inc/BulletAndPositionDlg.hxx1
5 files changed, 5 insertions, 0 deletions
diff --git a/include/cui/cuicharmap.hxx b/include/cui/cuicharmap.hxx
index c03c9a6808df..c69107bf9d1b 100644
--- a/include/cui/cuicharmap.hxx
+++ b/include/cui/cuicharmap.hxx
@@ -40,6 +40,7 @@ namespace svx
struct SvxShowCharSetItem;
}
+/// Provides the show characters or texts in a drawing area with special sizes and fonts.
class CUI_DLLPUBLIC SvxShowText : public weld::CustomWidgetController
{
private:
diff --git a/include/cui/numberingpreview.hxx b/include/cui/numberingpreview.hxx
index 0d6d01dc2a02..979773df6f72 100644
--- a/include/cui/numberingpreview.hxx
+++ b/include/cui/numberingpreview.hxx
@@ -5,6 +5,7 @@
#include <editeng/numitem.hxx>
#include <vcl/customweld.hxx>
+/// Provides the preview to show how looks bullet or numbering format before the apply.
class CUI_DLLPUBLIC SvxNumberingPreview : public weld::CustomWidgetController
{
const SvxNumRule* pActNum;
diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx
index 8469d9f646b4..58acee4b86a1 100644
--- a/include/svx/svxdlg.hxx
+++ b/include/svx/svxdlg.hxx
@@ -206,6 +206,7 @@ public:
virtual void GetDescription(OUString& rDescription) = 0;
};
+/// Abstract class provides the get information from the numbering and position dialog.
class AbstractSvxBulletAndPositionDlg :public VclAbstractDialog
{
protected:
diff --git a/sd/source/ui/dlg/sddlgfact.hxx b/sd/source/ui/dlg/sddlgfact.hxx
index 389211e1c119..322750bcd0e9 100644
--- a/sd/source/ui/dlg/sddlgfact.hxx
+++ b/sd/source/ui/dlg/sddlgfact.hxx
@@ -83,6 +83,7 @@ bool Class::StartExecuteAsync(AsyncContext &ctx) \
class SvxBulletAndPositionDlg;
+/// Provides managing and getting information from the numbering and position dialog.
class AbstractSvxBulletAndPositionDlg_Impl :public AbstractSvxBulletAndPositionDlg
{
std::unique_ptr<SvxBulletAndPositionDlg> m_xDlg;
diff --git a/sd/source/ui/inc/BulletAndPositionDlg.hxx b/sd/source/ui/inc/BulletAndPositionDlg.hxx
index 3ddaff6095af..54fe2abcd057 100644
--- a/sd/source/ui/inc/BulletAndPositionDlg.hxx
+++ b/sd/source/ui/inc/BulletAndPositionDlg.hxx
@@ -47,6 +47,7 @@ namespace sd
class View;
}
+/// Main class for handling the bullets, numbering format and their position.
class SvxBulletAndPositionDlg : public weld::GenericDialogController
{
OUString m_sNumCharFmtName;