LCOV - code coverage report
Current view: top level - libreoffice/sw/source/core/txtnode - txatbase.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 19 19 100.0 %
Date: 2012-12-17 Functions: 7 8 87.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 <svl/itempool.hxx>
      21             : #include <txatbase.hxx>
      22             : #include <fmtfld.hxx>
      23             : #include <docufld.hxx>
      24             : 
      25       40641 : SwTxtAttr::SwTxtAttr( SfxPoolItem& rAttr, xub_StrLen nStart )
      26             :     : m_pAttr( &rAttr )
      27             :     , m_nStart( nStart )
      28             :     , m_bDontExpand( false )
      29             :     , m_bLockExpandFlag( false )
      30             :     , m_bDontMoveAttr( false )
      31             :     , m_bCharFmtAttr( false )
      32             :     , m_bOverlapAllowedAttr( false )
      33             :     , m_bPriorityAttr( false )
      34             :     , m_bDontExpandStart( false )
      35             :     , m_bNesting( false )
      36       40641 :     , m_bHasDummyChar( false )
      37             : {
      38       40641 : }
      39             : 
      40       39843 : SwTxtAttr::~SwTxtAttr( )
      41             : {
      42       39843 : }
      43             : 
      44     1322584 : xub_StrLen* SwTxtAttr::GetEnd()
      45             : {
      46     1322584 :     return 0;
      47             : }
      48             : 
      49       39843 : void SwTxtAttr::Destroy( SwTxtAttr * pToDestroy, SfxItemPool& rPool )
      50             : {
      51       79686 :     if (!pToDestroy) return;
      52       39843 :     SfxPoolItem * const pAttr = pToDestroy->m_pAttr;
      53       39843 :     delete pToDestroy;
      54       39843 :     rPool.Remove( *pAttr );
      55             : }
      56             : 
      57      104008 : int SwTxtAttr::operator==( const SwTxtAttr& rAttr ) const
      58             : {
      59      104008 :     return GetAttr() == rAttr.GetAttr();
      60             : }
      61             : 
      62       39264 : SwTxtAttrEnd::SwTxtAttrEnd( SfxPoolItem& rAttr,
      63             :         xub_StrLen nStart, xub_StrLen nEnd ) :
      64       39264 :     SwTxtAttr( rAttr, nStart ), m_nEnd( nEnd )
      65             : {
      66       39264 : }
      67             : 
      68     1701223 : xub_StrLen* SwTxtAttrEnd::GetEnd()
      69             : {
      70     1701223 :     return & m_nEnd;
      71             : }
      72             : 
      73             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10