summaryrefslogtreecommitdiffstats
path: root/svx/source/sidebar/line
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/sidebar/line')
-rw-r--r--svx/source/sidebar/line/LinePropertyPanel.cxx4
-rw-r--r--svx/source/sidebar/line/LinePropertyPanel.hxx2
-rw-r--r--svx/source/sidebar/line/LineWidthControl.cxx8
-rw-r--r--svx/source/sidebar/line/LineWidthControl.hxx4
-rw-r--r--svx/source/sidebar/line/LineWidthValueSet.cxx4
-rw-r--r--svx/source/sidebar/line/LineWidthValueSet.hxx2
6 files changed, 4 insertions, 20 deletions
diff --git a/svx/source/sidebar/line/LinePropertyPanel.cxx b/svx/source/sidebar/line/LinePropertyPanel.cxx
index eaa79bbe118e..241d16ec8395 100644
--- a/svx/source/sidebar/line/LinePropertyPanel.cxx
+++ b/svx/source/sidebar/line/LinePropertyPanel.cxx
@@ -673,10 +673,6 @@ void LinePropertyPanel::NotifyItemUpdate(
-SfxBindings* LinePropertyPanel::GetBindings()
-{
- return mpBindings;
-}
diff --git a/svx/source/sidebar/line/LinePropertyPanel.hxx b/svx/source/sidebar/line/LinePropertyPanel.hxx
index 9eb1508d7f13..c22268f014f2 100644
--- a/svx/source/sidebar/line/LinePropertyPanel.hxx
+++ b/svx/source/sidebar/line/LinePropertyPanel.hxx
@@ -74,7 +74,7 @@ public:
const SfxPoolItem* pState,
const bool bIsEnabled) SAL_OVERRIDE;
- SfxBindings* GetBindings();
+ SfxBindings* GetBindings() { return mpBindings;}
void SetWidth(long nWidth);
void SetWidthIcon(int n);
diff --git a/svx/source/sidebar/line/LineWidthControl.cxx b/svx/source/sidebar/line/LineWidthControl.cxx
index 77fcea5fcfe3..a16e59e2a77f 100644
--- a/svx/source/sidebar/line/LineWidthControl.cxx
+++ b/svx/source/sidebar/line/LineWidthControl.cxx
@@ -346,18 +346,10 @@ IMPL_LINK(LineWidthControl, MFModifyHdl, void *, pControl)
-bool LineWidthControl::IsCloseByEdit()
-{
- return mbCloseByEdit;
-}
-long LineWidthControl::GetTmpCustomWidth()
-{
- return mnTmpCusomWidth;
-}
diff --git a/svx/source/sidebar/line/LineWidthControl.hxx b/svx/source/sidebar/line/LineWidthControl.hxx
index 99a1d98312e6..6053edb54c6b 100644
--- a/svx/source/sidebar/line/LineWidthControl.hxx
+++ b/svx/source/sidebar/line/LineWidthControl.hxx
@@ -43,8 +43,8 @@ public:
virtual void Paint(const Rectangle& rect) SAL_OVERRIDE;
void SetWidthSelect( long lValue, bool bValuable, SfxMapUnit eMapUnit);
- bool IsCloseByEdit();
- long GetTmpCustomWidth();
+ bool IsCloseByEdit() { return mbCloseByEdit;}
+ long GetTmpCustomWidth() { return mnTmpCusomWidth;}
private:
LinePropertyPanel& mrLinePropertyPanel;
diff --git a/svx/source/sidebar/line/LineWidthValueSet.cxx b/svx/source/sidebar/line/LineWidthValueSet.cxx
index 68f11f56e24c..66f83a2f151a 100644
--- a/svx/source/sidebar/line/LineWidthValueSet.cxx
+++ b/svx/source/sidebar/line/LineWidthValueSet.cxx
@@ -76,10 +76,6 @@ void LineWidthValueSet::SetSelItem(sal_uInt16 nSel)
-sal_uInt16 LineWidthValueSet::GetSelItem()
-{
- return nSelItem;
-}
diff --git a/svx/source/sidebar/line/LineWidthValueSet.hxx b/svx/source/sidebar/line/LineWidthValueSet.hxx
index 90b64565f3b7..a3bb77382c8f 100644
--- a/svx/source/sidebar/line/LineWidthValueSet.hxx
+++ b/svx/source/sidebar/line/LineWidthValueSet.hxx
@@ -33,7 +33,7 @@ public:
void SetUnit(OUString* str);
void SetSelItem(sal_uInt16 nSel);
- sal_uInt16 GetSelItem();
+ sal_uInt16 GetSelItem() { return nSelItem;}
void SetImage(Image img);
void SetCusEnable(bool bEnable);