homescreensrv_plat/hs_widget_publisher_api/src/hswidgetitem.cpp
branchRCL_3
changeset 31 8baec10861af
parent 30 a5a39a295112
equal deleted inserted replaced
30:a5a39a295112 31:8baec10861af
    25 // ---------------------------------------------------------------------------
    25 // ---------------------------------------------------------------------------
    26 //
    26 //
    27 HsWidgetItem::HsWidgetItem(std::string& aItemName, std::string& aValue):
    27 HsWidgetItem::HsWidgetItem(std::string& aItemName, std::string& aValue):
    28 	mItemName(aItemName), mItemString(aValue), mItemInt(0), 
    28 	mItemName(aItemName), mItemString(aValue), mItemInt(0), 
    29 	mIsString(true),mTrigger(false)
    29 	mIsString(true),mTrigger(false)
    30 	
       
    31 	{
    30 	{
    32 	}
    31 	}
    33 
    32 
    34 // ---------------------------------------------------------------------------
    33 // ---------------------------------------------------------------------------
    35 // 
    34 // 
    36 // ---------------------------------------------------------------------------
    35 // ---------------------------------------------------------------------------
    37 //
    36 //
    38 HsWidgetItem::HsWidgetItem( std::string& aItemName, int aValue ):
    37 HsWidgetItem::HsWidgetItem( std::string& aItemName, int aValue ):
    39 	mItemName(aItemName), mItemString(), mItemInt(aValue), mIsString(false)
    38 	mItemName(aItemName), mItemString(), mItemInt(aValue), 
       
    39 	mIsString(false), mTrigger(false)
    40 	{
    40 	{
    41 	}
    41 	}
    42 
    42 
    43 // ---------------------------------------------------------------------------
    43 // ---------------------------------------------------------------------------
    44 // 
    44 //