sd/source/ui/app/optsitem.cxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-)
New commits: commit b58e3526bbaadc579b69154083b430a97e167801 Author: Andras Timar <[email protected]> AuthorDate: Mon Feb 16 16:27:11 2026 +0100 Commit: Miklos Vajna <[email protected]> CommitDate: Tue Feb 17 09:10:59 2026 +0100 sd: remove stale SnapGrid/Size from grid option property names Commit 861614d7530a removed the SnapGrid groups from the schema but forgot to remove "SnapGrid/Size" from the property name arrays in SdOptionsGrid::GetPropNameArray(), causing a configmgr warning on every Impress/Draw startup. Change-Id: I197bf4aa5fe25a6bbc46d898920ae9babdd4a001 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/199489 Reviewed-by: Miklos Vajna <[email protected]> Tested-by: Jenkins CollaboraOffice <[email protected]> diff --git a/sd/source/ui/app/optsitem.cxx b/sd/source/ui/app/optsitem.cxx index 8bbee5825330..12208e4a310c 100644 --- a/sd/source/ui/app/optsitem.cxx +++ b/sd/source/ui/app/optsitem.cxx @@ -541,8 +541,7 @@ void SdOptionsGrid::GetPropNameArray( const char* const*& ppNames, sal_uLong& rC "Subdivision/YAxis", "Option/SnapToGrid", "Option/Synchronize", - "Option/VisibleGrid", - "SnapGrid/Size" + "Option/VisibleGrid" }; ppNames = aPropNamesMetric; rCount = SAL_N_ELEMENTS(aPropNamesMetric); @@ -557,8 +556,7 @@ void SdOptionsGrid::GetPropNameArray( const char* const*& ppNames, sal_uLong& rC "Subdivision/YAxis", "Option/SnapToGrid", "Option/Synchronize", - "Option/VisibleGrid", - "SnapGrid/Size" + "Option/VisibleGrid" }; ppNames = aPropNamesNonMetric; rCount = SAL_N_ELEMENTS(aPropNamesNonMetric);
