~unity-team/unity-api/stable

« back to all changes in this revision

Viewing changes to include/unity/shell/application/ApplicationManagerInterface.h

  • Committer: CI Train Bot
  • Author(s): Michael Terry
  • Date: 2015-12-04 18:32:31 UTC
  • mfrom: (194.1.2 fix-wakelocks-8.5)
  • Revision ID: ci-train-bot@canonical.com-20151204183231-2qz9tms0xcfcrwk8
BackportĀ lp:~mterry/unity-api/fix-wakelocks

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
        m_roleNames.insert(RoleState, "state");
72
72
        m_roleNames.insert(RoleFocused, "focused");
73
73
        m_roleNames.insert(RoleIsTouchApp, "isTouchApp");
 
74
        m_roleNames.insert(RoleExemptFromLifecycle, "exemptFromLifecycle");
74
75
 
75
76
        connect(this, SIGNAL(rowsInserted(QModelIndex, int, int)), SIGNAL(countChanged()));
76
77
        connect(this, SIGNAL(rowsRemoved(QModelIndex, int, int)), SIGNAL(countChanged()));
94
95
        RoleState,
95
96
        RoleFocused,
96
97
        RoleIsTouchApp,
 
98
        RoleExemptFromLifecycle,
97
99
    };
98
100
 
99
101
    /// @cond