logsui/logsapp/tsrc/ut_logsapp/inc/logsviewmanagerstub.h
changeset 21 2f0af9ba7665
parent 15 76d2cf7a585e
equal deleted inserted replaced
18:acd4e87b24b4 21:2f0af9ba7665
    50     virtual bool activateView(LogsAppViewId viewId)
    50     virtual bool activateView(LogsAppViewId viewId)
    51     {
    51     {
    52         mViewId = viewId;
    52         mViewId = viewId;
    53         return true;
    53         return true;
    54     }
    54     }
    55     virtual bool activateView(LogsAppViewId viewId, bool showDialer, QVariant args)
    55     virtual bool activateView(LogsAppViewId viewId, bool showDialer, QVariant args, const QString& dialpadText = QString())
    56     {
    56     {Q_UNUSED( dialpadText );
    57         mViewId = viewId;
    57         mViewId = viewId;
    58         mShowDialer = showDialer;
    58         mShowDialer = showDialer;
    59         mArgs = args;
    59         mArgs = args;
    60         return true;
    60         return true;
    61     }
    61     }
    62     virtual bool activatePreviousView()
    62     virtual bool activatePreviousView(bool showDialpad,  const QString& dialpadText)
    63     {
    63     { Q_UNUSED( showDialpad );
       
    64     	Q_UNUSED( dialpadText );
    64         mPreviousActivated = true;
    65         mPreviousActivated = true;
    65         return true;
    66         return true;
    66     }
    67     }
    67     
    68     
    68     virtual HbMainWindow& mainWindow()
    69     virtual HbMainWindow& mainWindow()