cui/source/tabpages/tpbitmap.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 13b9055b014cfb9f15536a1bedd0cae753ecde22 Author: Zdibák Zoltán <[email protected]> AuthorDate: Wed Nov 14 23:48:37 2018 +0100 Commit: Adolfo Jayme Barrientos <[email protected]> CommitDate: Thu Nov 15 04:48:38 2018 +0100 Fix copy-paste blooper Change-Id: I6b52117fdf51da9f402b8904f472e443320d4841 Reviewed-on: https://gerrit.libreoffice.org/63393 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <[email protected]> diff --git a/cui/source/tabpages/tpbitmap.cxx b/cui/source/tabpages/tpbitmap.cxx index 779c3ca096de..d8d0ea3ca01f 100644 --- a/cui/source/tabpages/tpbitmap.cxx +++ b/cui/source/tabpages/tpbitmap.cxx @@ -652,7 +652,7 @@ IMPL_LINK_NOARG( SvxBitmapTabPage, ModifyBitmapStyleHdl, weld::ComboBox&, void ) if (m_xTsbScale->get_sensitive() && m_xTsbScale->get_state() == TRISTATE_TRUE) { aSetBitmapSize.setWidth(-m_xBitmapWidth->get_value(FieldUnit::NONE)); - aSetBitmapSize.setHeight(-m_xBitmapWidth->get_value(FieldUnit::NONE)); + aSetBitmapSize.setHeight(-m_xBitmapHeight->get_value(FieldUnit::NONE)); } else { _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
