LCOV - code coverage report
Current view: top level - sc/source/ui/miscdlgs - namecrea.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 0 19 0.0 %
Date: 2014-11-03 Functions: 0 4 0.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             : #undef SC_DLLIMPLEMENTATION
      21             : 
      22             : #include "namecrea.hxx"
      23             : #include "scresid.hxx"
      24             : 
      25           0 : ScNameCreateDlg::ScNameCreateDlg( vcl::Window * pParent, sal_uInt16 nFlags )
      26           0 :     : ModalDialog(pParent, "CreateNamesDialog", "modules/scalc/ui/createnamesdialog.ui")
      27             : {
      28           0 :     get(m_pTopBox, "top");
      29           0 :     get(m_pLeftBox, "left");
      30           0 :     get(m_pBottomBox, "bottom");
      31           0 :     get(m_pRightBox, "right");
      32           0 :     m_pTopBox->Check   ( (nFlags & NAME_TOP)   ? true : false );
      33           0 :     m_pLeftBox->Check  ( (nFlags & NAME_LEFT)  ? true : false );
      34           0 :     m_pBottomBox->Check( (nFlags & NAME_BOTTOM)? true : false );
      35           0 :     m_pRightBox->Check ( (nFlags & NAME_RIGHT) ? true : false );
      36           0 : }
      37             : 
      38           0 : sal_uInt16 ScNameCreateDlg::GetFlags() const
      39             : {
      40           0 :     sal_uInt16  nResult = 0;
      41             : 
      42           0 :     nResult |= m_pTopBox->IsChecked()      ? NAME_TOP:     0 ;
      43           0 :     nResult |= m_pLeftBox->IsChecked()     ? NAME_LEFT:    0 ;
      44           0 :     nResult |= m_pBottomBox->IsChecked()   ? NAME_BOTTOM:  0 ;
      45           0 :     nResult |= m_pRightBox->IsChecked()    ? NAME_RIGHT:   0 ;
      46             : 
      47           0 :     return nResult;
      48           0 : }
      49             : 
      50             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10