cui/inc/personas.hrc | 30 ------------------------------ 1 file changed, 30 deletions(-)
New commits: commit 5f27dce500af4d4928d3935fbfdadedb8a2e5f0b Author: Caolán McNamara <caolan.mcnam...@collabora.com> AuthorDate: Tue Jul 22 14:59:59 2025 +0100 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Tue Jul 22 18:05:31 2025 +0200 cui/inc/personas.hrc is unused since: commit c4962247e40b5e6750c522d43359d9436dcfec68 CommitDate: Wed Dec 18 16:23:39 2024 +0100 tdf#163620 [API CHANGE] remove persona/appearance-toggle related code Change-Id: I821b6850dcf14f18ce800217215ed53db07414a8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/188169 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com> diff --git a/cui/inc/personas.hrc b/cui/inc/personas.hrc deleted file mode 100644 index 6b101717dcaa..000000000000 --- a/cui/inc/personas.hrc +++ /dev/null @@ -1,30 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - */ - -#pragma once - -#include <sal/types.h> -#include <unotools/resmgr.hxx> - -#include <utility> - -#define NC_(Context, String) TranslateId(Context, u8##String) - -// it must be synchronized with extras/source/gallery/personas/personas_list.txt -std::pair<TranslateId, sal_uInt16> RID_PERSONAS_COLOR[] = -{ - { NC_("RID_CUI_PERSONAS_COLOR", "White") , 0 }, - { NC_("RID_CUI_PERSONAS_COLOR", "Gray") , 1 }, - { NC_("RID_CUI_PERSONAS_COLOR", "Dark") , 2 }, - { NC_("RID_CUI_PERSONAS_COLOR", "Pink") , 3 }, - { NC_("RID_CUI_PERSONAS_COLOR", "Sand") , 4 }, - { NC_("RID_CUI_PERSONAS_COLOR", "Green") , 5 }, -}; - -/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */