From a5dbc997bff8f7fe61ddc848f48c880a6e67e448 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 25 Feb 2021 11:38:02 +0000 Subject: drop archaic rollable support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I69f94cd8013a31f8f6bcf62d703b99f659a1ebb4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111555 Tested-by: Jenkins Reviewed-by: Caolán McNamara --- include/vcl/vclenum.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/vcl/vclenum.hxx') diff --git a/include/vcl/vclenum.hxx b/include/vcl/vclenum.hxx index 005e48c5406a..251b5bdba1ea 100644 --- a/include/vcl/vclenum.hxx +++ b/include/vcl/vclenum.hxx @@ -91,8 +91,6 @@ enum class SymbolType : sal_uInt16 PLAY = 16, STOP = 19, CLOSE = 25, - ROLLUP = 26, - ROLLDOWN = 27, CHECKMARK = 28, RADIOCHECKMARK = 29, FLOAT = 31, @@ -307,6 +305,8 @@ enum class WindowStateState { Normal = 0x0001, Minimized = 0x0002, Maximized = 0x0004, + // Rollup is no longer used, but retained because WindowStateState is serialized + // from/to strings describing window state that are stored in a users config Rollup = 0x0008, MaximizedHorz = 0x0010, MaximizedVert = 0x0020, -- cgit