bump product version to 5.0.4.1
[LibreOffice.git] / svl / source / items / sitem.cxx
blob1dda3befbb911aee5a75a49547ec0ee5d266c455
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <rtl/ustring.hxx>
21 #include <svl/itemset.hxx>
22 #include <svl/poolitem.hxx>
23 #include <tools/stream.hxx>
25 SfxSetItem::SfxSetItem( sal_uInt16 which, const SfxItemSet &rSet) :
26 SfxPoolItem(which),
27 pSet(rSet.Clone(true))
33 SfxSetItem::SfxSetItem( sal_uInt16 which, SfxItemSet *pS) :
34 SfxPoolItem(which),
35 pSet(pS)
37 DBG_ASSERT(pS, "SfxSetItem without set constructed" );
42 SfxSetItem::SfxSetItem( const SfxSetItem& rCopy, SfxItemPool *pPool ) :
43 SfxPoolItem(rCopy.Which()),
44 pSet(rCopy.pSet->Clone(true, pPool))
50 SfxSetItem::~SfxSetItem()
52 delete pSet; pSet = 0;
57 bool SfxSetItem::operator==( const SfxPoolItem& rCmp) const
59 DBG_ASSERT( SfxPoolItem::operator==( rCmp ), "unequal type" );
60 return *pSet == *static_cast<const SfxSetItem &>(rCmp).pSet;
65 bool SfxSetItem::GetPresentation
67 SfxItemPresentation /*ePresentation*/,
68 SfxMapUnit /*eCoreMetric*/,
69 SfxMapUnit /*ePresentationMetric*/,
70 OUString& /*rText*/,
71 const IntlWrapper *
72 ) const
74 return false;
79 SvStream& SfxSetItem::Store(SvStream& rStream, sal_uInt16) const
81 GetItemSet().Store(rStream);
82 return rStream;
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */