summaryrefslogtreecommitdiff
path: root/accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-02-04 14:54:41 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-02-04 17:26:10 +1100
commit777ad8f5d5b140af0b6959995b8838bf50a578ec (patch)
treeb0545d8c1324045ca8cfc6a8f4c1ef1f30643414 /accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx
parent0e414e1433acf775c17063cc748818ee7dd822e3 (diff)
accessibility: fix doxygen errors
Change-Id: Ib1bed3e4df91ad00ecf2deb5c3d135cc2f5561b5
Diffstat (limited to 'accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx')
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx b/accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx
index a91b92681c78..58ec93b94392 100644
--- a/accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx
+++ b/accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx
@@ -24,13 +24,11 @@
#include <cppuhelper/implbase1.hxx>
-typedef ::cppu::ImplHelper1<
- css::accessibility::XAccessible
- > VCLXAccessible_BASE;
+typedef ::cppu::ImplHelper1< css::accessibility::XAccessible > VCLXAccessible_BASE;
/** This class represents non editable text fields. The object passed to
- the constructor is expected to be a list (a <type>ListBox</type> to be
+ the constructor is expected to be a list (a ListBox to be
more specific). From this always the selected item is token to be made
accessible by this class. When the selected item changes then also the
exported text changes.
@@ -78,12 +76,12 @@ protected:
virtual ~VCLXAccessibleTextField();
/** With this method the text of the currently selected item is made
- available to the <type>VCLXAccessibleTextComponent</type> base class.
+ available to the VCLXAccessibleTextComponent base class.
*/
OUString implGetText() override;
private:
- /** We need to save the accessible parent to return it in <type>getAccessibleParent()</type>,
+ /** We need to save the accessible parent to return it in getAccessibleParent(),
because this method of the base class returns the wrong parent.
*/
css::uno::Reference< css::accessibility::XAccessible > m_xParent;