summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-02-01 14:31:09 +0000
committerCaolán McNamara <caolanm@redhat.com>2020-02-02 21:39:58 +0100
commit075e365e20a75dd12c29b0b094fea986f3e1231a (patch)
tree07fc29345cbfbb2f4e7fe81a75840791f4435d15 /svx
parent61fd0e0c27494fdda61e9e06490c50ef1147c1bd (diff)
SvxRelativeField is newly unused
Change-Id: Iaeb72e9aa7276736632a66f1eb75277a696e91e0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87831 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/relfld.cxx23
1 files changed, 0 insertions, 23 deletions
diff --git a/svx/source/dialog/relfld.cxx b/svx/source/dialog/relfld.cxx
index a6609d2009a4..d8db417a9717 100644
--- a/svx/source/dialog/relfld.cxx
+++ b/svx/source/dialog/relfld.cxx
@@ -18,29 +18,6 @@
*/
#include <svx/relfld.hxx>
-#include <vcl/builder.hxx>
-
-SvxRelativeField::SvxRelativeField(
- vcl::Window *const pParent, WinBits const nBits, FieldUnit const eUnit)
- : MetricField( pParent, nBits)
-{
- SetUnit(eUnit);
- SetDecimalDigits( 2 );
- SetMin( 0 );
- SetMax( 9999 );
-}
-
-extern "C" SAL_DLLPUBLIC_EXPORT void makeSvxRelativeField(VclPtr<vcl::Window> & rRet, const VclPtr<vcl::Window> & pParent, VclBuilder::stringmap & rMap)
-{
- static_assert(std::is_same_v<std::remove_pointer_t<VclBuilder::customMakeWidget>,
- decltype(makeSvxRelativeField)>);
- OUString const custom(BuilderUtils::extractCustomProperty(rMap));
- FieldUnit const eUnit(BuilderUtils::detectUnit(custom));
- rRet = VclPtr<SvxRelativeField>::Create(pParent,
- WB_BORDER | WB_SPIN | WB_REPEAT |
- WB_LEFT | WB_GROUP,
- eUnit);
-}
RelativeField::RelativeField(std::unique_ptr<weld::MetricSpinButton> pControl)
: m_xSpinButton(std::move(pControl))