/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * 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 . */ #include "sal/config.h" #include "com/sun/star/uno/Any.hxx" #include "rtl/ref.hxx" #include "rtl/ustring.h" #include "rtl/ustring.hxx" #include "localizedvaluenode.hxx" #include "node.hxx" namespace configmgr { LocalizedValueNode::LocalizedValueNode(int layer, css::uno::Any const & value): Node(layer), value_(value) {} rtl::Reference< Node > LocalizedValueNode::clone(bool) const { return new LocalizedValueNode(*this); } OUString LocalizedValueNode::getTemplateName() const { return OUString("*"); } css::uno::Any LocalizedValueNode::getValue() const { return value_; } void LocalizedValueNode::setValue(int layer, css::uno::Any const & value) { setLayer(layer); value_ = value; } LocalizedValueNode::LocalizedValueNode(LocalizedValueNode const & other): Node(other), value_(other.value_) {} LocalizedValueNode::~LocalizedValueNode() {} Node::Kind LocalizedValueNode::kind() const { return KIND_LOCALIZED_VALUE; } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ro/cib/libreoffice-6-3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/config_host
AgeCommit message (Expand)Author
2014-05-08New --disable-runtime-optimizationsStephan Bergmann
2014-04-24More hacking on --with-localesTor Lillqvist
2014-04-18Intermediate commit of hacking on --disable-database-connectivityTor Lillqvist
2014-04-17More generic way to disable avmediaTor Lillqvist
2014-03-03add experimental export file validationMarkus Mohrhard
2014-02-21Add config option used when we try to link one huge object file.Matúš Kukan
2014-01-23Depend unit test on existing font.Jan-Marek Glogowski
2013-11-19Add data for Alfresco Cloud CMIS connectionCédric Bosdonnat
2013-11-12add config header for EOTDavid Tardon
2013-11-07OAuth2 application keys shouldn't be in the code.Cédric Bosdonnat
2013-10-31solver doesn't solve anything...Michael Stahl
2013-10-17Bin --enable-desktop-gui-elementsTor Lillqvist
2013-10-12Add HAVE_FEATURE_X11Tor Lillqvist
2013-10-09Update comment to match realityTor Lillqvist
2013-09-19Allow enable / disable opencl at build time.Kohei Yoshida
2013-09-19Remove opencl-sdk configure option, and build time opencl conditionals.Kohei Yoshida
2013-09-18Add the configure bits to support --disable-orcus.Kohei Yoshida
2013-09-06Check for FT_Face_GetCharVariantIndex at build timeKhaled Hosny
2013-08-29make the tinderbox information more reliable in the about dialog (fdo#58034)Petr Mladek
2013-08-19Rename SOLAR_JAVA to ENABLE_JAVA and HAVE_FEATURE_JAVATor Lillqvist
2013-08-18Further work on the "Mac-like app structure" optionTor Lillqvist
2013-08-10Add HAVE_FEATURE_MACOSX_MACLIKE_APP_STRUCTURETor Lillqvist
2013-08-10Start of enabling use of a more proper "Mac-like" install tree structureTor Lillqvist
2013-08-05do not base feature checks on gcc versionLuboš Luňák
2013-08-03Add SDT probes for RTL_LOG_STRING_NEW/DELETE.Mark Wielaard
2013-07-26Move the (unimplemented) READONLY_INSTALLSET flag into config_features.hTor Lillqvist
2013-07-26Move OS X sandbox flag to config_features.hTor Lillqvist
2013-07-26discriptive comments on HAvE_FEATURE_AVAHI and remove unused ac_defSiqi
2013-07-26use config_features.h.in insteadSiqi
2013-07-23adjust for upstreaming of warn_unused attributeLuboš Luňák
2013-06-27use #if to avoid gotchas, move header to include, make UI conditional.Michael Meeks
2013-06-20...and similarly for __cxa_allocate_exception and __cxa_throwStephan Bergmann
2013-06-20Clean up declaration of __cxa_get_globalsStephan Bergmann
2013-06-13rename HAVE_CXX0X->HAVE_CXX11 and clean up to #define in a config headerLuboš Luňák
2013-06-04MPLv2 subset improvements.Michael Meeks