diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/gtk3/gtkinst.cxx | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx index 17bbfe5d497e..70930a1267c0 100644 --- a/vcl/unx/gtk3/gtkinst.cxx +++ b/vcl/unx/gtk3/gtkinst.cxx @@ -17461,11 +17461,6 @@ public: m_aCustomFont.use_custom_font(&rFont, u"spinbutton"); } - void set_update_policy_if_valid() - { - gtk_spin_button_set_update_policy(m_pButton, GTK_UPDATE_IF_VALID); - } - virtual void disable_notify_events() override { g_signal_handler_block(m_pButton, m_nValueChangedSignalId); @@ -24312,13 +24307,7 @@ public: virtual std::unique_ptr<weld::MetricSpinButton> weld_metric_spin_button(const OString& id, FieldUnit eUnit) override { - std::unique_ptr<weld::SpinButton> xButton(weld_spin_button(id)); - if (xButton) - { - GtkInstanceSpinButton& rButton = dynamic_cast<GtkInstanceSpinButton&>(*xButton); - rButton.set_update_policy_if_valid(); - } - return std::make_unique<weld::MetricSpinButton>(std::move(xButton), eUnit); + return std::make_unique<weld::MetricSpinButton>(weld_spin_button(id), eUnit); } virtual std::unique_ptr<weld::FormattedSpinButton> weld_formatted_spin_button(const OString &id) override |