summaryrefslogtreecommitdiff
path: root/svx/source/sidebar/line/LineWidthPopup.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-02-15 20:41:33 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-02-16 12:54:44 +0000
commita1ceacc17e3f30d5e9c06b3218ad8ec26ca2f1b9 (patch)
tree56a29f66f75f326a0a677ab1697ce28f1bc9fcbf /svx/source/sidebar/line/LineWidthPopup.cxx
parent18f41dfaf19d656d290c47d196ef2702e169a522 (diff)
boost::foo_ptr->std::foo_ptr
Change-Id: I9219619b538b6530a89f5932ac51eb3b62eb396a
Diffstat (limited to 'svx/source/sidebar/line/LineWidthPopup.cxx')
-rw-r--r--svx/source/sidebar/line/LineWidthPopup.cxx13
1 files changed, 2 insertions, 11 deletions
diff --git a/svx/source/sidebar/line/LineWidthPopup.cxx b/svx/source/sidebar/line/LineWidthPopup.cxx
index fe464a415700..5e587821b21a 100644
--- a/svx/source/sidebar/line/LineWidthPopup.cxx
+++ b/svx/source/sidebar/line/LineWidthPopup.cxx
@@ -38,31 +38,22 @@ LineWidthPopup::LineWidthPopup (
SetPopupModeEndHandler(::boost::bind(&LineWidthPopup::PopupModeEndCallback, this));
}
-
-
-
LineWidthPopup::~LineWidthPopup (void)
{
}
-
-
-
void LineWidthPopup::SetWidthSelect (long lValue, bool bValuable, SfxMapUnit eMapUnit)
{
ProvideContainerAndControl();
- LineWidthControl* pControl = dynamic_cast<LineWidthControl*>(mpControl.get());
+ LineWidthControl* pControl = dynamic_cast<LineWidthControl*>(mxControl.get());
if (pControl != NULL)
pControl->SetWidthSelect(lValue, bValuable, eMapUnit);
}
-
-
-
void LineWidthPopup::PopupModeEndCallback (void)
{
- LineWidthControl* pControl = dynamic_cast<LineWidthControl*>(mpControl.get());
+ LineWidthControl* pControl = dynamic_cast<LineWidthControl*>(mxControl.get());
if (pControl != NULL)
{
if (pControl->IsCloseByEdit())