apengine/apsettingshandlerui/src/AccessPointTextSettingPage.cpp
changeset 70 ac5daea24fb0
equal deleted inserted replaced
61:8b0c979bbe8c 70:ac5daea24fb0
       
     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:  Implementation of CAccessPointTextSettingPage.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 
       
    21 
       
    22 #include "AccessPointTextSettingPage.h"
       
    23 #include <akntextsettingpage.h>
       
    24 
       
    25 #include <AknInputLanguageInfo.h>  // for AVKON ELAF
       
    26 #include <featmgr.h>
       
    27 #include "ApSettingsHandlerLogger.h"
       
    28 
       
    29 // ================= MEMBER FUNCTIONS =======================
       
    30 
       
    31 
       
    32 // ---------------------------------------------------------
       
    33 // CAccessPointTextSettingPage::CAccessPointTextSettingPage
       
    34 // ---------------------------------------------------------
       
    35 //
       
    36 CAccessPointTextSettingPage::CAccessPointTextSettingPage
       
    37                                         ( TInt aResourceID,
       
    38                                           TDes& aText,
       
    39                                           TInt aTextSettingPageFlags,
       
    40                                           TBool aIsLatin )
       
    41     :CAknTextSettingPage( aResourceID, aText, aTextSettingPageFlags )
       
    42     {
       
    43     }
       
    44 
       
    45 
       
    46 
       
    47 
       
    48 // ---------------------------------------------------------
       
    49 // CAccessPointTextSettingPage::CAccessPointTextSettingPage
       
    50 // ---------------------------------------------------------
       
    51 //
       
    52 CAccessPointTextSettingPage::CAccessPointTextSettingPage
       
    53                                     ( const TDesC* aSettingTitleText,
       
    54                                       TInt aSettingNumber,
       
    55                                       TInt aControlType,
       
    56                                       TInt aEditorResourceId,
       
    57                                       TInt aSettingPageResourceId,
       
    58                                       TDes& aText,
       
    59                                       TInt aTextSettingPageFlags,
       
    60                                       TBool aIsLatin )
       
    61     :CAknTextSettingPage( aSettingTitleText, aSettingNumber, aControlType,
       
    62     aEditorResourceId, aSettingPageResourceId, aText, aTextSettingPageFlags )
       
    63     {
       
    64     }
       
    65 
       
    66 // ---------------------------------------------------------
       
    67 // CAccessPointTextSettingPage::ConstructL
       
    68 // ---------------------------------------------------------
       
    69 //
       
    70 void CAccessPointTextSettingPage::ConstructL()
       
    71     {
       
    72     }
       
    73 
       
    74 // End of File