summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-12-21 14:00:42 +0000
committerCaolán McNamara <caolanm@redhat.com>2020-12-22 10:16:42 +0100
commit4491cee27c80bc83493136b323af5bdd128352e7 (patch)
tree3e05e3b089b28943bef5fbb36552e4116bab3369 /include
parente5cf818c887fdd0ab43b5434d39cd9d3fde997e6 (diff)
replace margin-left with margin-start and margin-right with margin-end
Change-Id: Iee3cc8c22b393ca420d0ed68673c61fe7ef240ba Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108113 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/weld.hxx8
-rw-r--r--include/vcl/window.hxx8
2 files changed, 8 insertions, 8 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx
index 1265bf774ec7..fd9fb9260587 100644
--- a/include/vcl/weld.hxx
+++ b/include/vcl/weld.hxx
@@ -184,13 +184,13 @@ public:
virtual void set_margin_top(int nMargin) = 0;
virtual void set_margin_bottom(int nMargin) = 0;
- virtual void set_margin_left(int nMargin) = 0;
- virtual void set_margin_right(int nMargin) = 0;
+ virtual void set_margin_start(int nMargin) = 0;
+ virtual void set_margin_end(int nMargin) = 0;
virtual int get_margin_top() const = 0;
virtual int get_margin_bottom() const = 0;
- virtual int get_margin_left() const = 0;
- virtual int get_margin_right() const = 0;
+ virtual int get_margin_start() const = 0;
+ virtual int get_margin_end() const = 0;
/*
* Report the extents of this widget relative to the rRelative target widget.
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx
index 43db85d77e5f..d4e96f93a45e 100644
--- a/include/vcl/window.hxx
+++ b/include/vcl/window.hxx
@@ -1395,11 +1395,11 @@ public:
void set_border_width(sal_Int32 nBorderWidth);
sal_Int32 get_border_width() const;
- void set_margin_left(sal_Int32 nWidth);
- sal_Int32 get_margin_left() const;
+ void set_margin_start(sal_Int32 nWidth);
+ sal_Int32 get_margin_start() const;
- void set_margin_right(sal_Int32 nWidth);
- sal_Int32 get_margin_right() const;
+ void set_margin_end(sal_Int32 nWidth);
+ sal_Int32 get_margin_end() const;
void set_margin_top(sal_Int32 nWidth);
sal_Int32 get_margin_top() const;