summaryrefslogtreecommitdiff
path: root/accessibility/inc
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-02-05 19:37:05 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-02-05 19:37:39 +1100
commite16a07f70ac622a01e759f2a3a5be3b9e02e30ae (patch)
tree9a3002a5aef90db70f7b405c42cba7842afe9bc8 /accessibility/inc
parent47538ac78018eaaeb03a52ce32a27a8744639864 (diff)
solenv: fix mkdocs.sh to take into account projects with no inc dir
Change-Id: I959279c11f0ae5f372936ee3db605716cab37c21
Diffstat (limited to 'accessibility/inc')
-rw-r--r--accessibility/inc/accessibility/extended/AccessibleBrowseBox.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/accessibility/inc/accessibility/extended/AccessibleBrowseBox.hxx b/accessibility/inc/accessibility/extended/AccessibleBrowseBox.hxx
index 959397709b1f..f89090455ade 100644
--- a/accessibility/inc/accessibility/extended/AccessibleBrowseBox.hxx
+++ b/accessibility/inc/accessibility/extended/AccessibleBrowseBox.hxx
@@ -50,7 +50,7 @@ protected:
/** sets the XAccessible which created the context
- <p>To be called only once, and only if in the ctor NULL was passed.</p>
+ To be called only once, and only if in the ctor NULL was passed.
*/
void setCreator(
const css::uno::Reference< css::accessibility::XAccessible >& _rxCreator
@@ -61,7 +61,7 @@ protected:
virtual void SAL_CALL disposing() override;
protected:
- // XAccessibleContext -----------------------------------------------------
+ // XAccessibleContext
/** @return The count of visible children. */
virtual sal_Int32 SAL_CALL getAccessibleChildCount()
@@ -74,7 +74,7 @@ protected:
throw ( css::lang::IndexOutOfBoundsException,
css::uno::RuntimeException, std::exception ) override;
- // XAccessibleComponent ---------------------------------------------------
+ // XAccessibleComponent
/** @return
The accessible child rendered under the given point.
@@ -88,7 +88,7 @@ protected:
virtual void SAL_CALL grabFocus()
throw ( css::uno::RuntimeException, std::exception ) override;
- // XServiceInfo -----------------------------------------------------------
+ // XServiceInfo
/** @return
The name of this class.
@@ -144,7 +144,7 @@ public:
}
protected:
- // internal virtual methods -----------------------------------------------
+ // internal virtual methods
/** @attention This method requires locked mutex's and a living object.
@return The bounding box (VCL rect.) relative to the parent window. */
@@ -153,7 +153,7 @@ protected:
@return The bounding box (VCL rect.) in screen coordinates. */
virtual Rectangle implGetBoundingBoxOnScreen() override;
- // internal helper methods ------------------------------------------------
+ // internal helper methods
/** This method creates (once) and returns the accessible data table child.
@attention This method requires locked mutex's and a living object.
@@ -181,15 +181,15 @@ protected:
virtual AccessibleBrowseBoxTable* createAccessibleTable();
private:
- // members ----------------------------------------------------------------
+ // members
std::unique_ptr< AccessibleBrowseBoxImpl > m_xImpl;
};
/** the XAccessible which creates/returns an AccessibleBrowseBox
- <p>The instance holds its XAccessibleContext with a hard reference, while
- the context holds this instance weak.</p>
+ The instance holds its XAccessibleContext with a hard reference, while
+ the context holds this instance weak.
*/
class AccessibleBrowseBoxAccess:
public cppu::WeakImplHelper<css::accessibility::XAccessible>,