sc/source/ui/condformat/condformatdlgentry.cxx | 7 +++---- vcl/source/edit/textview.cxx | 1 + 2 files changed, 4 insertions(+), 4 deletions(-)
New commits: commit b48286f558b5d2998f7528ba3afebbf852796212 Author: Julien Nabet <serval2...@yahoo.fr> AuthorDate: Sat Oct 5 11:43:00 2024 +0200 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Sat Oct 5 13:41:54 2024 +0200 cid#1620556: UNINIT_CTOR in textview Change-Id: I0e13c8c189211a97161c1eef5a0ad12e48817564 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/174533 Reviewed-by: Julien Nabet <serval2...@yahoo.fr> Tested-by: Jenkins diff --git a/vcl/source/edit/textview.cxx b/vcl/source/edit/textview.cxx index a9a3bc3f09fe..e5504c58a68e 100644 --- a/vcl/source/edit/textview.cxx +++ b/vcl/source/edit/textview.cxx @@ -130,6 +130,7 @@ TextView::TextView(ExtTextEngine* pEng, vcl::Window* pWindow) mbAutoIndent = false; mbCursorEnabled = true; mbClickedInSelection = false; + mbCursorAtEndOfLine = false; // mbInSelection = false; mnTravelXPos = TRAVEL_X_DONTKNOW; commit f3c294093bcdb25a420ac9d068329cecca16c4d8 Author: Julien Nabet <serval2...@yahoo.fr> AuthorDate: Sat Oct 5 11:29:06 2024 +0200 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Sat Oct 5 13:41:44 2024 +0200 cid#1620560: REVERSE_INULL in condformatdlgentry Change-Id: I4e80e1d3b4c1e4b3f08dcdca6dd64473ff87364d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/174532 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx index 0e6a55f7a023..d23b254829e2 100644 --- a/sc/source/ui/condformat/condformatdlgentry.cxx +++ b/sc/source/ui/condformat/condformatdlgentry.cxx @@ -1281,13 +1281,12 @@ ScIconSetFrmtDataEntry::ScIconSetFrmtDataEntry(weld::Container* pParent, ScIconS , mxLbEntryType(mxBuilder->weld_combo_box(u"listbox"_ustr)) , mpContainer(pParent) { - // tdf#162948: Use ">" instead of ">=". Add some spaces to keep the alignment - if (!pEntry->GetGreaterThanOrEqual()) - mxFtEntry->set_label(" > "); - mxImgIcon->set_from_icon_name(ScIconSetFormat::getIconName(eType, i)); if(pEntry) { + // tdf#162948: Use ">" instead of ">=". Add some spaces to keep the alignment + if (!pEntry->GetGreaterThanOrEqual()) + mxFtEntry->set_label(" > "); switch(pEntry->GetType()) { case COLORSCALE_VALUE: