coreapplicationuis/SysAp/Src/SysApDocument.cpp
changeset 0 2e3d3ce01487
child 46 eea20ed08f4b
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 /*
       
     2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  CSysApDocument implementation.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include <apgwgnam.h>
       
    21 #include "SysApDocument.h"
       
    22 #include "SysApAppUi.h"
       
    23 
       
    24 
       
    25 // ============================ MEMBER FUNCTIONS ==============================
       
    26 
       
    27 // ----------------------------------------------------------------------------
       
    28 // CSysApDocument::~CSysApDocument()
       
    29 // ----------------------------------------------------------------------------
       
    30 
       
    31 CSysApDocument::~CSysApDocument()
       
    32     {
       
    33     }
       
    34 
       
    35 // ----------------------------------------------------------------------------
       
    36 // CSysApDocument::CreateAppUiL()
       
    37 // constructs CSysApUi
       
    38 // ----------------------------------------------------------------------------
       
    39 CEikAppUi* CSysApDocument::CreateAppUiL()
       
    40     {
       
    41     return new(ELeave) CSysApAppUi;
       
    42     }
       
    43 
       
    44 // ----------------------------------------------------------------------------
       
    45 // CSysApDocument::UpdateTaskNameL( CApaWindowGroupName* aWgName )
       
    46 // ----------------------------------------------------------------------------
       
    47 void CSysApDocument::UpdateTaskNameL( CApaWindowGroupName* aWgName )
       
    48 	{
       
    49 	CAknDocument::UpdateTaskNameL( aWgName );
       
    50 	aWgName->SetHidden( ETrue );
       
    51 	}
       
    52 
       
    53 // End of File