LCOV - code coverage report
Current view: top level - sc/source/filter/lotus - memory.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 18 18 100.0 %
Date: 2015-06-13 12:38:46 Functions: 4 4 100.0 %
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             : //  Remark:  Variables are not declared in header file! Modules have to declare
      21             : //              their variables via extern!
      22             : 
      23             : #include "scitems.hxx"
      24             : #include "scmem.h"
      25             : #include <svx/algitem.hxx>
      26             : #include <editeng/justifyitem.hxx>
      27             : #include "attrib.hxx"
      28             : #include "lotfilter.hxx"
      29             : #include "tool.h"
      30             : 
      31           4 : bool MemNew(LotusContext &rContext)
      32             : {
      33           4 :     rContext.pValueFormCache = new FormCache(rContext.pDoc);
      34             : 
      35             :     // fuer tool.cxx::PutFormString()
      36           4 :     rContext.pAttrUnprot = new ScProtectionAttr( true );
      37           4 :     rContext.pAttrRight = new SvxHorJustifyItem( SVX_HOR_JUSTIFY_RIGHT, ATTR_HOR_JUSTIFY );
      38           4 :     rContext.pAttrLeft = new SvxHorJustifyItem( SVX_HOR_JUSTIFY_LEFT, ATTR_HOR_JUSTIFY );
      39           4 :     rContext.pAttrCenter = new SvxHorJustifyItem( SVX_HOR_JUSTIFY_CENTER, ATTR_HOR_JUSTIFY );
      40           4 :     rContext.pAttrRepeat = new SvxHorJustifyItem( SVX_HOR_JUSTIFY_REPEAT, ATTR_HOR_JUSTIFY );
      41           4 :     rContext.pAttrStandard = new SvxHorJustifyItem( SVX_HOR_JUSTIFY_STANDARD, ATTR_HOR_JUSTIFY );
      42             : 
      43           4 :     return true;
      44             : }
      45             : 
      46           3 : void MemDelete(LotusContext &rContext)
      47             : {
      48           3 :     delete rContext.pValueFormCache;
      49           3 :     delete rContext.pAttrRight;
      50           3 :     delete rContext.pAttrLeft;
      51           3 :     delete rContext.pAttrCenter;
      52           3 :     delete rContext.pAttrRepeat;
      53           3 :     delete rContext.pAttrStandard;
      54           3 :     delete rContext.pAttrUnprot;
      55          33 : }
      56             : 
      57             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11