summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/cbutton.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/inc/cbutton.hxx')
-rw-r--r--sc/source/ui/inc/cbutton.hxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/sc/source/ui/inc/cbutton.hxx b/sc/source/ui/inc/cbutton.hxx
index 8de5dafe7768..c9f2936d99b3 100644
--- a/sc/source/ui/inc/cbutton.hxx
+++ b/sc/source/ui/inc/cbutton.hxx
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -46,36 +46,36 @@ public:
void SetOutputDevice( OutputDevice* pOutputDevice );
- void Draw( const Point& rAt,
- const Size& rSize,
+ void Draw( const Point& rAt,
+ const Size& rSize,
BOOL bState,
- BOOL bBtnIn = FALSE );
+ BOOL bBtnIn = FALSE );
- void Draw( const Point& rAt,
+ void Draw( const Point& rAt,
BOOL bState,
- BOOL bBtnIn = FALSE )
+ BOOL bBtnIn = FALSE )
{ Draw( rAt, aBtnSize, bState, bBtnIn ); }
void Draw( BOOL bState,
BOOL bBtnIn = FALSE )
{ Draw( aBtnPos, aBtnSize, bState, bBtnIn ); }
- void SetOptSizePixel();
+ void SetOptSizePixel();
- void SetPosPixel( const Point& rNewPos ) { aBtnPos = rNewPos; }
- Point GetPosPixel() const { return aBtnPos; }
+ void SetPosPixel( const Point& rNewPos ) { aBtnPos = rNewPos; }
+ Point GetPosPixel() const { return aBtnPos; }
- void SetSizePixel( const Size& rNewSize ) { aBtnSize = rNewSize; }
- Size GetSizePixel() const { return aBtnSize; }
+ void SetSizePixel( const Size& rNewSize ) { aBtnSize = rNewSize; }
+ Size GetSizePixel() const { return aBtnSize; }
private:
- void ImpDrawArrow( const Rectangle& rRect,
+ void ImpDrawArrow( const Rectangle& rRect,
BOOL bState );
protected:
OutputDevice* pOut;
- Point aBtnPos;
- Size aBtnSize;
+ Point aBtnPos;
+ Size aBtnSize;
};