summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r--sc/source/ui/inc/AccessibleCell.hxx10
-rw-r--r--sc/source/ui/inc/AccessibleCellBase.hxx18
-rw-r--r--sc/source/ui/inc/AccessibleContextBase.hxx28
-rw-r--r--sc/source/ui/inc/AccessibleDocument.hxx24
-rw-r--r--sc/source/ui/inc/AccessibleDocumentBase.hxx2
-rw-r--r--sc/source/ui/inc/AccessibleDocumentPagePreview.hxx20
-rw-r--r--sc/source/ui/inc/AccessibleEditObject.hxx16
-rw-r--r--sc/source/ui/inc/AccessiblePageHeader.hxx8
-rw-r--r--sc/source/ui/inc/AccessiblePageHeaderArea.hxx20
-rw-r--r--sc/source/ui/inc/AccessiblePreviewCell.hxx2
-rw-r--r--sc/source/ui/inc/AccessiblePreviewHeaderCell.hxx6
-rw-r--r--sc/source/ui/inc/AccessiblePreviewTable.hxx2
-rw-r--r--sc/source/ui/inc/AccessibleSpreadsheet.hxx14
-rw-r--r--sc/source/ui/inc/AccessibleTableBase.hxx12
-rw-r--r--sc/source/ui/inc/drawsh.hxx2
15 files changed, 92 insertions, 92 deletions
diff --git a/sc/source/ui/inc/AccessibleCell.hxx b/sc/source/ui/inc/AccessibleCell.hxx
index 5dbce7033f37..75bd457b4ad0 100644
--- a/sc/source/ui/inc/AccessibleCell.hxx
+++ b/sc/source/ui/inc/AccessibleCell.hxx
@@ -96,7 +96,7 @@ public:
protected:
/// Return the object's current bounding box relative to the desktop.
- virtual Rectangle GetBoundingBoxOnScreen(void) const
+ virtual Rectangle GetBoundingBoxOnScreen() const
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return the object's current bounding box relative to the parent object.
@@ -109,7 +109,7 @@ public:
/// Return the number of currently visible children.
/// override to calculate this on demand
virtual sal_Int32 SAL_CALL
- getAccessibleChildCount(void)
+ getAccessibleChildCount()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return the specified child or NULL if index is invalid.
@@ -122,7 +122,7 @@ public:
/// Return the set of current states.
virtual ::com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleStateSet> SAL_CALL
- getAccessibleStateSet(void)
+ getAccessibleStateSet()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual ::com::sun::star::uno::Reference<
@@ -135,13 +135,13 @@ public:
/** Returns an identifier for the implementation of this object.
*/
virtual OUString SAL_CALL
- getImplementationName(void)
+ getImplementationName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/** Returns a list of all supported services.
*/
virtual ::com::sun::star::uno::Sequence< OUString> SAL_CALL
- getSupportedServiceNames(void)
+ getSupportedServiceNames()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual ::com::sun::star::uno::Any SAL_CALL getExtendedAttributes()
diff --git a/sc/source/ui/inc/AccessibleCellBase.hxx b/sc/source/ui/inc/AccessibleCellBase.hxx
index 779d166525d2..3094541c0af4 100644
--- a/sc/source/ui/inc/AccessibleCellBase.hxx
+++ b/sc/source/ui/inc/AccessibleCellBase.hxx
@@ -70,18 +70,18 @@ public:
/// Return this objects index among the parents children.
virtual sal_Int32 SAL_CALL
- getAccessibleIndexInParent(void)
+ getAccessibleIndexInParent()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
protected:
/// Return this object's description.
virtual OUString SAL_CALL
- createAccessibleDescription(void)
+ createAccessibleDescription()
throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
/// Return the object's current name.
virtual OUString SAL_CALL
- createAccessibleName(void)
+ createAccessibleName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
public:
@@ -109,7 +109,7 @@ public:
/** Returns an identifier for the implementation of this object.
*/
virtual OUString SAL_CALL
- getImplementationName(void)
+ getImplementationName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XTypeProvider ===================================================
@@ -122,7 +122,7 @@ public:
/** Returns a implementation id.
*/
virtual ::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL
- getImplementationId(void)
+ getImplementationId()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
protected:
@@ -137,14 +137,14 @@ private:
const com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleStateSet>& rxParentStates);
protected:
- OUString SAL_CALL GetNote(void)
+ OUString SAL_CALL GetNote()
throw (::com::sun::star::uno::RuntimeException);
- OUString SAL_CALL GetAllDisplayNote(void)
+ OUString SAL_CALL GetAllDisplayNote()
throw (::com::sun::star::uno::RuntimeException);
- OUString SAL_CALL getShadowAttrs(void)
+ OUString SAL_CALL getShadowAttrs()
throw (::com::sun::star::uno::RuntimeException);
- OUString SAL_CALL getBorderAttrs(void)
+ OUString SAL_CALL getBorderAttrs()
throw (::com::sun::star::uno::RuntimeException);
public:
const ScAddress& GetCellAddress() const { return maCellAddress; }
diff --git a/sc/source/ui/inc/AccessibleContextBase.hxx b/sc/source/ui/inc/AccessibleContextBase.hxx
index 0eecb33385b7..61f1cbcca487 100644
--- a/sc/source/ui/inc/AccessibleContextBase.hxx
+++ b/sc/source/ui/inc/AccessibleContextBase.hxx
@@ -76,7 +76,7 @@ public:
virtual void Init();
virtual void SAL_CALL disposing() SAL_OVERRIDE;
protected:
- virtual ~ScAccessibleContextBase(void);
+ virtual ~ScAccessibleContextBase();
public:
bool SAL_CALL isShowing( )
@@ -103,7 +103,7 @@ public:
/// Return the XAccessibleContext.
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext> SAL_CALL
- getAccessibleContext(void) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ getAccessibleContext() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XAccessibleComponent ============================================
@@ -152,27 +152,27 @@ public:
/// Return a reference to the parent.
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible> SAL_CALL
- getAccessibleParent(void)
+ getAccessibleParent()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return this objects index among the parents children.
virtual sal_Int32 SAL_CALL
- getAccessibleIndexInParent(void)
+ getAccessibleIndexInParent()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return this object's role.
virtual sal_Int16 SAL_CALL
- getAccessibleRole(void)
+ getAccessibleRole()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return this object's description.
virtual OUString SAL_CALL
- getAccessibleDescription(void)
+ getAccessibleDescription()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return the object's current name.
virtual OUString SAL_CALL
- getAccessibleName(void)
+ getAccessibleName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return NULL to indicate that an empty relation set.
@@ -184,14 +184,14 @@ public:
/// Return the set of current states.
virtual ::com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleStateSet> SAL_CALL
- getAccessibleStateSet(void)
+ getAccessibleStateSet()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/** Return the parents locale or throw exception if this object has no
parent yet/anymore.
*/
virtual ::com::sun::star::lang::Locale SAL_CALL
- getLocale(void)
+ getLocale()
throw (::com::sun::star::uno::RuntimeException,
::com::sun::star::accessibility::IllegalAccessibleComponentStateException, std::exception) SAL_OVERRIDE;
@@ -229,7 +229,7 @@ public:
/** Returns an identifier for the implementation of this object.
*/
virtual OUString SAL_CALL
- getImplementationName(void)
+ getImplementationName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/** Return whether the specified service is supported by this class.
@@ -242,7 +242,7 @@ public:
the AccessibleContext and Accessible service.
*/
virtual ::com::sun::star::uno::Sequence< OUString> SAL_CALL
- getSupportedServiceNames(void)
+ getSupportedServiceNames()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XTypeProvider ===================================================
@@ -255,18 +255,18 @@ public:
/** Returns a implementation id.
*/
virtual ::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL
- getImplementationId(void)
+ getImplementationId()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
protected:
/// Return this object's description.
virtual OUString SAL_CALL
- createAccessibleDescription(void)
+ createAccessibleDescription()
throw (::com::sun::star::uno::RuntimeException);
/// Return the object's current name.
virtual OUString SAL_CALL
- createAccessibleName(void)
+ createAccessibleName()
throw (::com::sun::star::uno::RuntimeException,
std::exception);
diff --git a/sc/source/ui/inc/AccessibleDocument.hxx b/sc/source/ui/inc/AccessibleDocument.hxx
index a450fa38e836..0d47e004205c 100644
--- a/sc/source/ui/inc/AccessibleDocument.hxx
+++ b/sc/source/ui/inc/AccessibleDocument.hxx
@@ -67,7 +67,7 @@ public:
DECL_LINK( WindowChildEventListener, VclSimpleEvent* );
protected:
- virtual ~ScAccessibleDocument(void);
+ virtual ~ScAccessibleDocument();
using ScAccessibleDocumentBase::IsDefunc;
@@ -103,7 +103,7 @@ public:
/// Return the number of currently visible children.
virtual sal_Int32 SAL_CALL
- getAccessibleChildCount(void)
+ getAccessibleChildCount()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return the specified child or NULL if index is invalid.
@@ -115,11 +115,11 @@ public:
/// Return the set of current states.
virtual ::com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleStateSet> SAL_CALL
- getAccessibleStateSet(void)
+ getAccessibleStateSet()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL
- getAccessibleName(void)
+ getAccessibleName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual ::com::sun::star::uno::Any SAL_CALL getExtendedAttributes()
@@ -172,13 +172,13 @@ public:
/** Returns an identifier for the implementation of this object.
*/
virtual OUString SAL_CALL
- getImplementationName(void)
+ getImplementationName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/** Returns a list of all supported services.
*/
virtual ::com::sun::star::uno::Sequence< OUString> SAL_CALL
- getSupportedServiceNames(void)
+ getSupportedServiceNames()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XTypeProvider ===================================================
@@ -191,7 +191,7 @@ public:
/** Returns a implementation id.
*/
virtual ::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL
- getImplementationId(void)
+ getImplementationId()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== IAccessibleViewForwarder ========================================
@@ -202,7 +202,7 @@ public:
@return
Return <true/> if the view forwarder is valid and <false/> else.
*/
- virtual bool IsValid (void) const SAL_OVERRIDE;
+ virtual bool IsValid() const SAL_OVERRIDE;
/** Returns the area of the underlying document that is visible in the
* corresponding window.
@@ -270,20 +270,20 @@ public:
protected:
/// Return this object's description.
virtual OUString SAL_CALL
- createAccessibleDescription(void)
+ createAccessibleDescription()
throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
/// Return the object's current name.
virtual OUString SAL_CALL
- createAccessibleName(void)
+ createAccessibleName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return the object's current bounding box relative to the desktop.
- virtual Rectangle GetBoundingBoxOnScreen(void) const
+ virtual Rectangle GetBoundingBoxOnScreen() const
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return the object's current bounding box relative to the parent object.
- virtual Rectangle GetBoundingBox(void) const
+ virtual Rectangle GetBoundingBox() const
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private:
diff --git a/sc/source/ui/inc/AccessibleDocumentBase.hxx b/sc/source/ui/inc/AccessibleDocumentBase.hxx
index 7ab210daf913..de147514f252 100644
--- a/sc/source/ui/inc/AccessibleDocumentBase.hxx
+++ b/sc/source/ui/inc/AccessibleDocumentBase.hxx
@@ -32,7 +32,7 @@ public:
::com::sun::star::accessibility::XAccessible>& rxParent);
virtual void SwitchViewFireFocus();
protected:
- virtual ~ScAccessibleDocumentBase (void);
+ virtual ~ScAccessibleDocumentBase();
};
#endif
diff --git a/sc/source/ui/inc/AccessibleDocumentPagePreview.hxx b/sc/source/ui/inc/AccessibleDocumentPagePreview.hxx
index 6aa038504325..0a05bb781089 100644
--- a/sc/source/ui/inc/AccessibleDocumentPagePreview.hxx
+++ b/sc/source/ui/inc/AccessibleDocumentPagePreview.hxx
@@ -38,7 +38,7 @@ public:
::com::sun::star::accessibility::XAccessible>& rxParent,
ScPreviewShell* pViewShell );
protected:
- virtual ~ScAccessibleDocumentPagePreview(void);
+ virtual ~ScAccessibleDocumentPagePreview();
using ScAccessibleDocumentBase::IsDefunc;
@@ -77,23 +77,23 @@ public:
/// Return the set of current states.
virtual ::com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleStateSet> SAL_CALL
- getAccessibleStateSet(void)
+ getAccessibleStateSet()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
- virtual OUString SAL_CALL getAccessibleName(void)
+ virtual OUString SAL_CALL getAccessibleName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XServiceInfo ====================================================
/** Returns an identifier for the implementation of this object.
*/
virtual OUString SAL_CALL
- getImplementationName(void)
+ getImplementationName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/** Returns a list of all supported services.
*/
virtual ::com::sun::star::uno::Sequence< OUString> SAL_CALL
- getSupportedServiceNames(void)
+ getSupportedServiceNames()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XTypeProvider ===================================================
@@ -101,7 +101,7 @@ public:
/** Returns a implementation id.
*/
virtual ::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL
- getImplementationId(void)
+ getImplementationId()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== internal ========================================================
@@ -109,22 +109,22 @@ public:
protected:
/// Return this object's description.
virtual OUString SAL_CALL
- createAccessibleDescription(void)
+ createAccessibleDescription()
throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
/// Return the object's current name.
virtual OUString SAL_CALL
- createAccessibleName(void)
+ createAccessibleName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
public: // needed in ScShapeChildren
/// Return the object's current bounding box relative to the desktop.
- virtual Rectangle GetBoundingBoxOnScreen(void) const
+ virtual Rectangle GetBoundingBoxOnScreen() const
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
protected:
/// Return the object's current bounding box relative to the parent object.
- virtual Rectangle GetBoundingBox(void) const
+ virtual Rectangle GetBoundingBox() const
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private:
diff --git a/sc/source/ui/inc/AccessibleEditObject.hxx b/sc/source/ui/inc/AccessibleEditObject.hxx
index b9c2fdf85a4d..919a896a561f 100644
--- a/sc/source/ui/inc/AccessibleEditObject.hxx
+++ b/sc/source/ui/inc/AccessibleEditObject.hxx
@@ -85,11 +85,11 @@ public:
protected:
/// Return the object's current bounding box relative to the desktop.
- virtual Rectangle GetBoundingBoxOnScreen(void) const
+ virtual Rectangle GetBoundingBoxOnScreen() const
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return the object's current bounding box relative to the parent object.
- virtual Rectangle GetBoundingBox(void) const
+ virtual Rectangle GetBoundingBox() const
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
public:
@@ -98,7 +98,7 @@ public:
/// Return the number of currently visible children.
/// override to calculate this on demand
virtual sal_Int32 SAL_CALL
- getAccessibleChildCount(void)
+ getAccessibleChildCount()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return the specified child or NULL if index is invalid.
@@ -111,7 +111,7 @@ public:
/// Return the set of current states.
virtual ::com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleStateSet> SAL_CALL
- getAccessibleStateSet(void)
+ getAccessibleStateSet()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
//===== XAccessibleSelection ============================================
@@ -142,12 +142,12 @@ public:
protected:
/// Return this object's description.
virtual OUString SAL_CALL
- createAccessibleDescription(void)
+ createAccessibleDescription()
throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
/// Return the object's current name.
virtual OUString SAL_CALL
- createAccessibleName(void)
+ createAccessibleName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
public:
@@ -174,7 +174,7 @@ public:
/** Returns an identifier for the implementation of this object.
*/
virtual OUString SAL_CALL
- getImplementationName(void)
+ getImplementationName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XTypeProvider ===================================================
@@ -182,7 +182,7 @@ public:
/** Returns a implementation id.
*/
virtual ::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL
- getImplementationId(void)
+ getImplementationId()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private:
diff --git a/sc/source/ui/inc/AccessiblePageHeader.hxx b/sc/source/ui/inc/AccessiblePageHeader.hxx
index 2e1739db3757..5e00d62fc8c1 100644
--- a/sc/source/ui/inc/AccessiblePageHeader.hxx
+++ b/sc/source/ui/inc/AccessiblePageHeader.hxx
@@ -77,11 +77,11 @@ public:
void SetCurrentIndexInParent(sal_Int32 nNew) { mnIndex = nNew; }
protected:
- virtual OUString SAL_CALL createAccessibleDescription(void) throw(::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
- virtual OUString SAL_CALL createAccessibleName(void) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual OUString SAL_CALL createAccessibleDescription() throw(::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
+ virtual OUString SAL_CALL createAccessibleName() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
- virtual Rectangle GetBoundingBoxOnScreen(void) const throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
- virtual Rectangle GetBoundingBox(void) const throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual Rectangle GetBoundingBoxOnScreen() const throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual Rectangle GetBoundingBox() const throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private:
ScPreviewShell* mpViewShell;
diff --git a/sc/source/ui/inc/AccessiblePageHeaderArea.hxx b/sc/source/ui/inc/AccessiblePageHeaderArea.hxx
index 2a9bbd1b3c23..123e9b8bd643 100644
--- a/sc/source/ui/inc/AccessiblePageHeaderArea.hxx
+++ b/sc/source/ui/inc/AccessiblePageHeaderArea.hxx
@@ -43,7 +43,7 @@ public:
bool bHeader,
SvxAdjust eAdjust);
protected:
- virtual ~ScAccessiblePageHeaderArea (void);
+ virtual ~ScAccessiblePageHeaderArea();
public:
const EditTextObject* GetEditTextObject() const { return mpEditObj; }
@@ -66,7 +66,7 @@ public:
/// Return the number of currently visible children.
/// override to calculate this on demand
virtual sal_Int32 SAL_CALL
- getAccessibleChildCount(void)
+ getAccessibleChildCount()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return the specified child or NULL if index is invalid.
@@ -79,7 +79,7 @@ public:
/// Return the set of current states.
virtual ::com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleStateSet> SAL_CALL
- getAccessibleStateSet(void)
+ getAccessibleStateSet()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XServiceInfo ====================================================
@@ -87,14 +87,14 @@ public:
/** Returns an identifier for the implementation of this object.
*/
virtual OUString SAL_CALL
- getImplementationName(void)
+ getImplementationName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/** Returns a list of all supported services. In this case that is just
the AccessibleContext and Accessible service.
*/
virtual ::com::sun::star::uno::Sequence< OUString> SAL_CALL
- getSupportedServiceNames(void)
+ getSupportedServiceNames()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XTypeProvider ===================================================
@@ -102,15 +102,15 @@ public:
/** Returns a implementation id.
*/
virtual ::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL
- getImplementationId(void)
+ getImplementationId()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
protected:
- virtual OUString SAL_CALL createAccessibleDescription(void) throw(::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
- virtual OUString SAL_CALL createAccessibleName(void) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual OUString SAL_CALL createAccessibleDescription() throw(::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
+ virtual OUString SAL_CALL createAccessibleName() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
- virtual Rectangle GetBoundingBoxOnScreen(void) const throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
- virtual Rectangle GetBoundingBox(void) const throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual Rectangle GetBoundingBoxOnScreen() const throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual Rectangle GetBoundingBox() const throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private:
EditTextObject* mpEditObj;
diff --git a/sc/source/ui/inc/AccessiblePreviewCell.hxx b/sc/source/ui/inc/AccessiblePreviewCell.hxx
index 68dd70e5f40e..8615b6386e76 100644
--- a/sc/source/ui/inc/AccessiblePreviewCell.hxx
+++ b/sc/source/ui/inc/AccessiblePreviewCell.hxx
@@ -82,7 +82,7 @@ public:
/** Returns a implementation id.
*/
virtual ::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL
- getImplementationId(void)
+ getImplementationId()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
protected:
diff --git a/sc/source/ui/inc/AccessiblePreviewHeaderCell.hxx b/sc/source/ui/inc/AccessiblePreviewHeaderCell.hxx
index c399e4ebb098..4b8d2c9c980e 100644
--- a/sc/source/ui/inc/AccessiblePreviewHeaderCell.hxx
+++ b/sc/source/ui/inc/AccessiblePreviewHeaderCell.hxx
@@ -112,12 +112,12 @@ public:
/** Returns a implementation id.
*/
virtual ::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL
- getImplementationId(void)
+ getImplementationId()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
protected:
- virtual OUString SAL_CALL createAccessibleDescription(void) throw(::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
- virtual OUString SAL_CALL createAccessibleName(void) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual OUString SAL_CALL createAccessibleDescription() throw(::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
+ virtual OUString SAL_CALL createAccessibleName() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual Rectangle GetBoundingBoxOnScreen() const throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual Rectangle GetBoundingBox() const throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
diff --git a/sc/source/ui/inc/AccessiblePreviewTable.hxx b/sc/source/ui/inc/AccessiblePreviewTable.hxx
index ba281afb8867..29b524b8e0d7 100644
--- a/sc/source/ui/inc/AccessiblePreviewTable.hxx
+++ b/sc/source/ui/inc/AccessiblePreviewTable.hxx
@@ -175,7 +175,7 @@ protected:
throw (::com::sun::star::uno::RuntimeException,
std::exception) SAL_OVERRIDE;
- virtual Rectangle GetBoundingBoxOnScreen(void) const throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual Rectangle GetBoundingBoxOnScreen() const throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual Rectangle GetBoundingBox() const throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private:
diff --git a/sc/source/ui/inc/AccessibleSpreadsheet.hxx b/sc/source/ui/inc/AccessibleSpreadsheet.hxx
index 9ec6ecb60195..b74360f5c743 100644
--- a/sc/source/ui/inc/AccessibleSpreadsheet.hxx
+++ b/sc/source/ui/inc/AccessibleSpreadsheet.hxx
@@ -168,13 +168,13 @@ private:
/// Return NULL to indicate that an empty relation set.
virtual ::com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleRelationSet> SAL_CALL
- getAccessibleRelationSet(void)
+ getAccessibleRelationSet()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return the set of current states.
virtual ::com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleStateSet> SAL_CALL
- getAccessibleStateSet(void)
+ getAccessibleStateSet()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XAccessibleSelection ===========================================
@@ -214,13 +214,13 @@ private:
/** Returns an identifier for the implementation of this object.
*/
virtual OUString SAL_CALL
- getImplementationName(void)
+ getImplementationName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/** Returns a list of all supported services.
*/
virtual ::com::sun::star::uno::Sequence< OUString> SAL_CALL
- getSupportedServiceNames(void)
+ getSupportedServiceNames()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XTypeProvider ===================================================
@@ -228,7 +228,7 @@ private:
/** Returns a implementation id.
*/
virtual ::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL
- getImplementationId(void)
+ getImplementationId()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XAccessibleEventBroadcaster =====================================
@@ -257,11 +257,11 @@ private:
protected:
/// Return the object's current bounding box relative to the desktop.
- virtual Rectangle GetBoundingBoxOnScreen(void) const
+ virtual Rectangle GetBoundingBoxOnScreen() const
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return the object's current bounding box relative to the parent object.
- virtual Rectangle GetBoundingBox(void) const
+ virtual Rectangle GetBoundingBox() const
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private:
ScTabViewShell* mpViewShell;
diff --git a/sc/source/ui/inc/AccessibleTableBase.hxx b/sc/source/ui/inc/AccessibleTableBase.hxx
index ff3659e083df..7e923c1ec92a 100644
--- a/sc/source/ui/inc/AccessibleTableBase.hxx
+++ b/sc/source/ui/inc/AccessibleTableBase.hxx
@@ -198,7 +198,7 @@ public:
/// Return the number of currently visible children.
/// override to calculate this on demand
virtual sal_Int32 SAL_CALL
- getAccessibleChildCount(void)
+ getAccessibleChildCount()
throw (::com::sun::star::uno::RuntimeException,
std::exception) SAL_OVERRIDE;
@@ -225,7 +225,7 @@ public:
protected:
/// Return this object's description.
virtual OUString SAL_CALL
- createAccessibleDescription(void)
+ createAccessibleDescription()
throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
/// Return the object's current name.
@@ -238,14 +238,14 @@ public:
/// Return NULL to indicate that an empty relation set.
virtual ::com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleRelationSet> SAL_CALL
- getAccessibleRelationSet(void)
+ getAccessibleRelationSet()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return the set of current states.
// perhaps sometimes to be implemented
virtual ::com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessibleStateSet> SAL_CALL
- getAccessibleStateSet(void)
+ getAccessibleStateSet()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XAccessibleSelection ===========================================
@@ -291,7 +291,7 @@ public:
/** Returns an identifier for the implementation of this object.
*/
virtual OUString SAL_CALL
- getImplementationName(void)
+ getImplementationName()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
///===== XTypeProvider ===================================================
@@ -304,7 +304,7 @@ public:
/** Returns a implementation id.
*/
virtual ::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL
- getImplementationId(void)
+ getImplementationId()
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
protected:
diff --git a/sc/source/ui/inc/drawsh.hxx b/sc/source/ui/inc/drawsh.hxx
index 50b90bcf4b6d..3f12fe64bb86 100644
--- a/sc/source/ui/inc/drawsh.hxx
+++ b/sc/source/ui/inc/drawsh.hxx
@@ -88,7 +88,7 @@ public:
bool AreAllObjectsOnLayer(sal_uInt16 nLayerNo,const SdrMarkList& rMark);
void GetDrawAttrStateForIFBX( SfxItemSet& rSet );
- ::rtl::OUString GetSidebarContextName (void);
+ ::rtl::OUString GetSidebarContextName();
};
#endif