summaryrefslogtreecommitdiff
path: root/include/vcl/morebtn.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/morebtn.hxx')
-rw-r--r--include/vcl/morebtn.hxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/vcl/morebtn.hxx b/include/vcl/morebtn.hxx
index 936cbba77d9e..01a6e95da5cf 100644
--- a/include/vcl/morebtn.hxx
+++ b/include/vcl/morebtn.hxx
@@ -54,26 +54,12 @@ public:
void Click() SAL_OVERRIDE;
- void SetDelta( sal_uLong nNewDelta ) { mnDelta = nNewDelta; }
- sal_uLong GetDelta() const { return mnDelta; }
-
- void SetMapUnit( MapUnit eNewUnit = MAP_PIXEL ) { meUnit = eNewUnit; }
- MapUnit GetMapUnit() const { return meUnit; }
-
using PushButton::SetState;
- void SetState( bool bNewState = true );
- bool GetState() const { return mbState; }
void SetText( const OUString& rNewText ) SAL_OVERRIDE;
OUString GetText() const SAL_OVERRIDE;
};
-inline void MoreButton::SetState( bool bNewState )
-{
- if ( mbState != bNewState )
- Click();
-}
-
#endif // INCLUDED_VCL_MOREBTN_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */