summaryrefslogtreecommitdiff
path: root/include/toolkit/awt/scrollabledialog.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/toolkit/awt/scrollabledialog.hxx')
-rw-r--r--include/toolkit/awt/scrollabledialog.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/toolkit/awt/scrollabledialog.hxx b/include/toolkit/awt/scrollabledialog.hxx
index f2f2e060f653..86be3cbc7c66 100644
--- a/include/toolkit/awt/scrollabledialog.hxx
+++ b/include/toolkit/awt/scrollabledialog.hxx
@@ -59,14 +59,14 @@ namespace toolkit
public:
ScrollableWrapper( Window* pParent, WinBits nStyle = WB_STDDIALOG );
virtual ~ScrollableWrapper();
- virtual void SetScrollWidth( long nWidth );
- virtual long GetScrollWidth() { return maScrollArea.Width(); }
- virtual void SetScrollHeight( long nHeight );
- virtual long GetScrollHeight() { return maScrollArea.Height(); }
- virtual void SetScrollLeft( long nLeft );
- virtual long GetScrollLeft() { return mnScrollPos.X(); }
- virtual void SetScrollTop( long Top );
- virtual long GetScrollTop() { return mnScrollPos.Y() ; }
+ virtual void SetScrollWidth( long nWidth ) SAL_OVERRIDE;
+ virtual long GetScrollWidth() SAL_OVERRIDE { return maScrollArea.Width(); }
+ virtual void SetScrollHeight( long nHeight ) SAL_OVERRIDE;
+ virtual long GetScrollHeight() SAL_OVERRIDE { return maScrollArea.Height(); }
+ virtual void SetScrollLeft( long nLeft ) SAL_OVERRIDE;
+ virtual long GetScrollLeft() SAL_OVERRIDE { return mnScrollPos.X(); }
+ virtual void SetScrollTop( long Top ) SAL_OVERRIDE;
+ virtual long GetScrollTop() SAL_OVERRIDE { return mnScrollPos.Y() ; }
void setScrollVisibility( ScrollBarVisibility rState );
DECL_LINK( ScrollBarHdl, ScrollBar* );