summaryrefslogtreecommitdiff
path: root/include/svtools
diff options
context:
space:
mode:
authorTomaž Vajngerl <quikee@gmail.com>2013-08-31 12:56:04 +0200
committerTomaž Vajngerl <quikee@gmail.com>2013-09-03 07:46:44 +0200
commit516455206510fe2ad928cde37e4adfae4a57859a (patch)
tree0983c01bb93f45b0eb51179d6b27bab2b00b645f /include/svtools
parentc2a9699e90abb40cbe1772cbd581435568468265 (diff)
Ruler: use vector instead of array for elements
Change-Id: I099387648988b83d4d4b53f59237906e8f939c6e
Diffstat (limited to 'include/svtools')
-rw-r--r--include/svtools/ruler.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/svtools/ruler.hxx b/include/svtools/ruler.hxx
index 7bf8f5eb7011..97d27fb64028 100644
--- a/include/svtools/ruler.hxx
+++ b/include/svtools/ruler.hxx
@@ -781,12 +781,12 @@ public:
void SetLeftFrameMargin( long nPos );
void SetRightFrameMargin( long nPos );
- void SetLines( sal_uInt16 n = 0, const RulerLine* pLineAry = NULL );
- void SetBorders( sal_uInt16 n = 0, const RulerBorder* pBrdAry = NULL );
- void SetIndents( sal_uInt16 n = 0, const RulerIndent* pIndentAry = NULL );
+ void SetLines( sal_uInt32 n = 0, const RulerLine* pLineAry = NULL );
+ void SetBorders( sal_uInt32 n = 0, const RulerBorder* pBrdAry = NULL );
+ void SetIndents( sal_uInt32 n = 0, const RulerIndent* pIndentAry = NULL );
- void SetTabs( sal_uInt16 n = 0, const RulerTab* pTabAry = NULL );
- sal_uInt16 GetTabCount() const;
+ void SetTabs( sal_uInt32 n = 0, const RulerTab* pTabAry = NULL );
+ sal_uInt32 GetTabCount() const;
const RulerTab* GetTabs() const;
static void DrawTab( OutputDevice* pDevice, const Color &rFillColor,