mediasettings/videosettingsplugin/tsrc/testgroup/stub/src/hblineedit.cpp
changeset 46 adbe7d5ba2f5
child 41 229f037ce963
equal deleted inserted replaced
28:c48470be1ba7 46:adbe7d5ba2f5
       
     1 /*
       
     2 * Copyright (c) 2009 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:   HbLineEdit stub
       
    15 * 
       
    16 */
       
    17 
       
    18 // INCLUDE FILES
       
    19 #include "hblineedit.h"
       
    20 
       
    21 // ---------------------------------------------------------------------------
       
    22 // HbLineEdit
       
    23 // ---------------------------------------------------------------------------
       
    24 //
       
    25 HbLineEdit::HbLineEdit(QGraphicsItem *parent) : HbWidget(parent)
       
    26 {
       
    27 }
       
    28 
       
    29 // ---------------------------------------------------------------------------
       
    30 // HbLineEdit
       
    31 // ---------------------------------------------------------------------------
       
    32 //
       
    33 HbLineEdit::HbLineEdit(const QString &text, QGraphicsItem *parent) : HbWidget(parent)
       
    34 {
       
    35     Q_UNUSED(text);
       
    36 }
       
    37 
       
    38 // ---------------------------------------------------------------------------
       
    39 // ~HbLineEdit
       
    40 // ---------------------------------------------------------------------------
       
    41 //
       
    42 HbLineEdit::~HbLineEdit()
       
    43 {
       
    44 }
       
    45 
       
    46 // ---------------------------------------------------------------------------
       
    47 // setValidator
       
    48 // ---------------------------------------------------------------------------
       
    49 //
       
    50 void HbLineEdit::setValidator(HbValidator *validator)
       
    51 {
       
    52     mValidator = validator;
       
    53 }