/* * 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #define WIN32_LEAN_AND_MEAN #include #include "version.hrc" // version information VS_VERSION_INFO VERSIONINFO FILEVERSION VERSION, SUBVERSION, MICROVERSION, VERVARIANT PRODUCTVERSION VERSION, SUBVERSION, MICROVERSION, VERVARIANT FILEFLAGSMASK 0x3F FILEFLAGS #if defined(DEBUG) VS_FF_DEBUG | #endif #ifdef VER_PREL VS_FF_PRERELEASE | #endif 0 FILEOS VOS_NT_WINDOWS32 FILETYPE VFT_APP { BLOCK "StringFileInfo" { BLOCK "040904E4" { // International StringTable VALUE "CompanyName", PPS(RES_APP_VENDOR) "\0" VALUE "ProductName", "LibreOffice\0" VALUE "ProductVersion", PPS(VER_LEVEL) "\0" VALUE "FileVersion", PPS(VER_LEVEL) "\0" VALUE "OriginalFilename", PPS(ORG_NAME) "\0" VALUE "InternalName", PPS(INTERNAL_NAME) "\0" VALUE "LegalCopyright", S_CRIGHT " LibreOffice contributors. All rights reserved.\0" ADDITIONAL_VERINFO1 ADDITIONAL_VERINFO2 ADDITIONAL_VERINFO3 } } BLOCK "VarFileInfo" { VALUE "Translation", 0x0409, 1252 } } ora/cd-5.3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/include/rtl/stringutils.hxx
b6acf5d03bdddfda13116e28c'>drop unnecessary shl.hxx includes
AgeCommit message (Expand)Author
2024-09-08cid#1618764 Operands don't affect resultCaolán McNamara
2024-08-30Simplify a bitMike Kaganski
2023-12-04At least VS 2022 Preview 17.9.0 Preview 1.1 needs the fix tooStephan Bergmann
2023-10-18Extend /clr /std:c++20 char8_t workaround to old versions of VS 2022Stephan Bergmann
2023-10-13At least VS 2022 Preview 17.8.0 Preview 3.0 needs the fix tooStephan Bergmann
2023-10-12Fix build against VS 2022 17.7.5Stephan Bergmann
2023-10-11__cpp_char8_t is generally available nowStephan Bergmann
2023-07-13Restrict deleted catch-all O[U]StringChar ctor to arithmetic/enum typesStephan Bergmann
2022-04-05Fix typosAndrea Gelmini
2022-03-31Fix -Werror=array-boundsStephan Bergmann
2021-02-02tdf#130978 Added comment to all published APImsrijita18
2020-12-11Adapt the remaining OUString functions to std string_viewStephan Bergmann
2020-09-10cid#1466656 silence Logically dead codeCaolán McNamara
2020-09-05Make OUString(char16_t const[N]) ctor check for embedded NULsStephan Bergmann
2020-09-04Make many OUString functions take std::u16string_view parametersStephan Bergmann
2020-08-28Change OUStringLiteral from char[] to char16_t[]Stephan Bergmann
2020-08-26Except[Const]CharArrayDetector is only used by RTL_STRING_UNITTESTStephan Bergmann
2019-10-24Introduce OStringCharStephan Bergmann
2019-10-21Actually choose the OUStringBuffer::append overload for UTF-16 string literalsStephan Bergmann
2019-10-19OUStringChar must either take a sal_Unicode or an ASCII charStephan Bergmann
2019-10-17Rename OUStringLiteral1 to OUStringCharStephan Bergmann
2018-12-07HAVE_CXX14_CONSTEXPR is always true nowStephan Bergmann
2018-12-06Remove obsolete GCC version checksStephan Bergmann
2018-11-30Remove obsolete _MSC_VER checksStephan Bergmann
2018-11-17Adapt to C++2a char_tStephan Bergmann
2018-08-31coverity#1438473 silence Logically dead codeCaolán McNamara
2018-08-21Make OUStringLiteral ctor actually constexprStephan Bergmann
2018-02-02sal: MSVC: pragma warning: make more specific, remove obsoleteMike Kaganski
2017-10-23loplugin:includeform: UNO API include filesStephan Bergmann
2017-03-03Remove uses of SAL_CONSTEXPR in LIBO_INTERNAL_ONLYStephan Bergmann
2016-08-30Let OUStringLiteral1 take its arg as ctor arg, not template argStephan Bergmann
2016-08-29Make OUStringLiteral1 a wrapper around UTF-16 instead of just ASCIIStephan Bergmann
2016-08-29Support ConstCharArrayDetector also for UTF-16 arraysStephan Bergmann
2016-08-29OUString construction from OUStringLiteral1 must not be overruled by...Stephan Bergmann
Caolán McNamara
2014-07-29drop use of SFX_ITEM_PRESENTATION_NONENoel Grandin
2014-07-29simplify return argument of SfxPoolItem::GetPresentationNoel Grandin
2014-06-30Called C++ object pointer is nullCaolán McNamara
2014-06-26clang: Dead incrementCaolán McNamara
2014-06-17improve the inlinesimplememberfunctions clang pluginNoel Grandin
2014-06-09loplugin: inlinesimplememberfunctionsNoel Grandin
2014-05-19hrc and src files: squeeze multiple newlinesThomas Arnhold
2014-04-24add missing modelines to cxx and hxx filesThomas Arnhold