apengine/apsettingshandlerui/src/TextOverrides.cpp
changeset 71 9f263f780e41
parent 70 ac5daea24fb0
child 72 0c32cf868819
equal deleted inserted replaced
70:ac5daea24fb0 71:9f263f780e41
     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: 
       
    15 *     Declares the CTextOverrides class.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include "TextOverrides.h"
       
    22 #include <ApSettingsHandlerCommons.h>
       
    23 #include "ApSettingsHandlerLogger.h"
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 // ================= MEMBER FUNCTIONS =======================
       
    28 
       
    29 // ---------------------------------------------------------
       
    30 // CTextOverrides::NewL
       
    31 // ---------------------------------------------------------
       
    32 //
       
    33 CTextOverrides* CTextOverrides::NewL( )
       
    34     {
       
    35     return NULL;
       
    36     }
       
    37 
       
    38 
       
    39 
       
    40 // Destructor
       
    41 CTextOverrides::~CTextOverrides()
       
    42     {
       
    43     }
       
    44 
       
    45 
       
    46 // Constructor
       
    47 CTextOverrides::CTextOverrides()
       
    48     {
       
    49     }
       
    50 
       
    51 
       
    52 // ---------------------------------------------------------
       
    53 // CTextOverrides::ConstructL
       
    54 // ---------------------------------------------------------
       
    55 //
       
    56 void CTextOverrides::ConstructL( )
       
    57     {
       
    58     }
       
    59 
       
    60 
       
    61 // ---------------------------------------------------------
       
    62 // CTextOverrides::SetTextOverridesL
       
    63 // ---------------------------------------------------------
       
    64 //
       
    65 void CTextOverrides::SetTextOverrideL( TTextID aText2Change,
       
    66                                                 const TDesC& aNewText )
       
    67     {
       
    68     }
       
    69 
       
    70 
       
    71 // ---------------------------------------------------------
       
    72 // CTextOverrides::TextOverridesL
       
    73 // ---------------------------------------------------------
       
    74 //
       
    75 const TDesC& CTextOverrides::TextOverrideL( TTextID aTextId )
       
    76     {
       
    77     User::Leave( KErrNotSupported );
       
    78     }
       
    79 
       
    80 
       
    81 // ---------------------------------------------------------
       
    82 // CTextOverrides::IsTextOverridenL
       
    83 // ---------------------------------------------------------
       
    84 //
       
    85 TBool CTextOverrides::IsTextOverridenL( TTextID aTextId )
       
    86     {
       
    87     return EFalse;
       
    88     }
       
    89 
       
    90 
       
    91 // ---------------------------------------------------------
       
    92 // CTextOverrides::ValidateIdL
       
    93 // ---------------------------------------------------------
       
    94 //
       
    95 void CTextOverrides::ValidateIdL( TTextID aTextId )
       
    96     {
       
    97     }
       
    98 
       
    99 
       
   100 // End of File