src/hbcore/style/hbstyleoptiontitlepane.cpp
changeset 21 4633027730f5
parent 3 11d3954df52a
equal deleted inserted replaced
7:923ff622b8b9 21:4633027730f5
    30     \brief HbStyleOptionTitlePane has the style component for title pane
    30     \brief HbStyleOptionTitlePane has the style component for title pane
    31 */
    31 */
    32 
    32 
    33 
    33 
    34 HbStyleOptionTitlePane::HbStyleOptionTitlePane() :
    34 HbStyleOptionTitlePane::HbStyleOptionTitlePane() :
    35     HbStyleOption(), caption(""), mode(QIcon::Normal), transparent(false)
    35     HbStyleOption(), caption(""), mode(QIcon::Normal), transparent(false), margueeAnimation(false)
    36 {
    36 {
    37     type = Type;
    37     type = Type;
    38     version = Version;
    38     version = Version;
    39 }
    39 }
    40 
    40 
    41 HbStyleOptionTitlePane::HbStyleOptionTitlePane(const HbStyleOptionTitlePane &other) :
    41 HbStyleOptionTitlePane::HbStyleOptionTitlePane(const HbStyleOptionTitlePane &other) :
    42     HbStyleOption(other), caption(other.caption), mode(other.mode), transparent(other.transparent)
    42     HbStyleOption(other), caption(other.caption), mode(other.mode), transparent(other.transparent),
       
    43         margueeAnimation(other.margueeAnimation)
    43 {
    44 {
    44     type = Type;
    45     type = Type;
    45     version = Version;
    46     version = Version;
    46 }
    47 }
    47 
    48