LCOV - code coverage report
Current view: top level - svl/source/items - sitem.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 15 20 75.0 %
Date: 2015-06-13 12:38:46 Functions: 5 8 62.5 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       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/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      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 .
      18             :  */
      19             : 
      20             : #include <rtl/ustring.hxx>
      21             : #include <svl/itemset.hxx>
      22             : #include <svl/poolitem.hxx>
      23             : #include <tools/stream.hxx>
      24             : 
      25       12557 : SfxSetItem::SfxSetItem( sal_uInt16 which, const SfxItemSet &rSet) :
      26             :     SfxPoolItem(which),
      27       12557 :     pSet(rSet.Clone(true))
      28             : {
      29       12557 : }
      30             : 
      31             : 
      32             : 
      33      165800 : SfxSetItem::SfxSetItem( sal_uInt16 which, SfxItemSet *pS) :
      34             :     SfxPoolItem(which),
      35      165800 :     pSet(pS)
      36             : {
      37             :     DBG_ASSERT(pS, "SfxSetItem without set constructed" );
      38      165800 : }
      39             : 
      40             : 
      41             : 
      42      482843 : SfxSetItem::SfxSetItem( const SfxSetItem& rCopy, SfxItemPool *pPool ) :
      43      482843 :     SfxPoolItem(rCopy.Which()),
      44      482843 :     pSet(rCopy.pSet->Clone(true, pPool))
      45             : {
      46      482843 : }
      47             : 
      48             : 
      49             : 
      50     1321060 : SfxSetItem::~SfxSetItem()
      51             : {
      52      660530 :     delete pSet; pSet = 0;
      53      660530 : }
      54             : 
      55             : 
      56             : 
      57       39220 : bool SfxSetItem::operator==( const SfxPoolItem& rCmp) const
      58             : {
      59             :     DBG_ASSERT( SfxPoolItem::operator==( rCmp ), "unequal type" );
      60       39220 :     return *pSet == *static_cast<const SfxSetItem &>(rCmp).pSet;
      61             : }
      62             : 
      63             : 
      64             : 
      65           0 : bool SfxSetItem::GetPresentation
      66             : (
      67             :     SfxItemPresentation     /*ePresentation*/,
      68             :     SfxMapUnit              /*eCoreMetric*/,
      69             :     SfxMapUnit              /*ePresentationMetric*/,
      70             :     OUString&              /*rText*/,
      71             :     const IntlWrapper *
      72             : )   const
      73             : {
      74           0 :     return false;
      75             : }
      76             : 
      77             : 
      78             : 
      79           0 : SvStream& SfxSetItem::Store(SvStream& rStream, sal_uInt16) const
      80             : {
      81           0 :     GetItemSet().Store(rStream);
      82           0 :     return rStream;
      83             : }
      84             : 
      85             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11