/* -*- 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/. */ #include // expected-error@+1 {{rather declare this as constexpr [loplugin:stringstatic]}} static const OUString TEST1 = "xxx"; static constexpr OUString TEST2 = u"xxx"_ustr; void test2() { (void)TEST2; // expected-error@+1 {{rather declare this as constexpr [loplugin:stringstatic]}} static const OUString XXX = "xxx"; static constexpr OUString XXX2 = u"xxx"_ustr; (void)XXX; (void)XXX2; // expected-error@+1 {{rather declare this as constexpr [loplugin:stringstatic]}} static const OUString A1[1] = { u"xxx"_ustr }; static constexpr OUString A2[1] = { u"xxx"_ustr }; (void)A1; (void)A2; } llotropia/zeta-7-3'>distro/allotropia/zeta-7-3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/icon-themes/sukapura_dark/framework/res
AgeCommit message (Collapse)Author
2023-03-09tdf#153465 & tdf#153344 Sukapura Dark with 16px status bar iconsRizal Muttaqin
Change-Id: If255495c43f4606b7931b86901449453189e9994 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148551 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin <rizmut@libreoffice.org>
2023-03-05tdf#153465 Add Sukapura's dark variantRizal Muttaqin
Change-Id: I9f97c3990064db88fccf9269deb62414bfb6c3b8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148011 Tested-by: Rizal Muttaqin <rizmut@libreoffice.org> Reviewed-by: Rizal Muttaqin <rizmut@libreoffice.org>