diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-08-14 13:43:51 +0100 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2018-08-14 22:26:00 +0200 |
commit | 5a56b72413d5f555c854e36d3bd2fd50ec21644c (patch) | |
tree | e1ff1398f766b6c72265457a26d794baa37230b7 /vcl/unx/gtk3 | |
parent | 704133f7cb76b29a86d97d776b594c5ebf9a1123 (diff) |
Resolves: tdf#119251 parse non-default units in user inputted values
Change-Id: I28f8338f5c318f2228b742e2e171d53820cb0cc8
Reviewed-on: https://gerrit.libreoffice.org/58985
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'vcl/unx/gtk3')
-rw-r--r-- | vcl/unx/gtk3/gtk3gtkinst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx index 10610c089b4d..67db66dcdb08 100644 --- a/vcl/unx/gtk3/gtk3gtkinst.cxx +++ b/vcl/unx/gtk3/gtk3gtkinst.cxx @@ -3875,7 +3875,7 @@ private: return false; if (eHandled == TRISTATE_TRUE) { - *new_value = result; + *new_value = pThis->toGtk(result); return true; } return GTK_INPUT_ERROR; |