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.hxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/toolkit/awt/scrollabledialog.hxx b/include/toolkit/awt/scrollabledialog.hxx
index a085e652b3f9..42b70fe9b20c 100644
--- a/include/toolkit/awt/scrollabledialog.hxx
+++ b/include/toolkit/awt/scrollabledialog.hxx
@@ -31,13 +31,9 @@ namespace toolkit
public:
virtual ~ScrollableInterface() {}
virtual void SetScrollWidth( long nWidth ) = 0;
- virtual long GetScrollWidth() = 0;
virtual void SetScrollHeight( long nHeight ) = 0;
- virtual long GetScrollHeight() = 0;
virtual void SetScrollLeft( long nLeft ) = 0;
- virtual long GetScrollLeft() = 0;
virtual void SetScrollTop( long Top ) = 0;
- virtual long GetScrollTop() = 0;
};
template < class T >
@@ -61,13 +57,9 @@ namespace toolkit
virtual ~ScrollableWrapper();
virtual void dispose() SAL_OVERRIDE;
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* );