~nick-dedekind/unity8/side-stage-redesign-tutorial

« back to all changes in this revision

Viewing changes to tests/plugins/Unity/Launcher/launchermodeltest.cpp

  • Committer: Nick Dedekind
  • Date: 2015-12-14 18:06:18 UTC
  • mfrom: (1998.1.101 unity8)
  • Revision ID: nick.dedekind@canonical.com-20151214180618-men18zbauv1r153m
merged with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
    Qt::ScreenOrientations supportedOrientations() const override { return Qt::PortraitOrientation; }
61
61
    bool rotatesWindowContents() const override { return false; }
62
62
    bool isTouchApp() const override { return true; }
 
63
    bool exemptFromLifecycle() const override { return false; }
 
64
    void setExemptFromLifecycle(bool) override {}
63
65
 
64
66
    // Methods used for mocking (not in the interface)
65
67
    void setFocused(bool focused) { m_focused = focused; Q_EMIT focusedChanged(focused); }