~nick-dedekind/unity8/indicator.submenu-reinit

« back to all changes in this revision

Viewing changes to tests/mocks/Unity/Application/ApplicationInfo.cpp

  • Committer: Nick Dedekind
  • Date: 2013-09-16 07:37:30 UTC
  • mfrom: (229.1.91 trunk)
  • Revision ID: nicholas.dedekind@gmail.com-20130916073730-3o9iv6i9h0d2c7rl
merged with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#include <QQuickView>
22
22
#include <QQmlComponent>
23
23
 
 
24
ApplicationInfo::ApplicationInfo(const QString &appId, QObject *parent)
 
25
    : ApplicationInfoInterface(appId, parent)
 
26
    ,m_appId(appId)
 
27
    ,m_stage(MainStage)
 
28
    ,m_state(Starting)
 
29
    ,m_focused(false)
 
30
    ,m_fullscreen(false)
 
31
    ,m_windowItem(0)
 
32
    ,m_windowComponent(0)
 
33
    ,m_parentItem(0)
 
34
{
 
35
}
 
36
 
24
37
ApplicationInfo::ApplicationInfo(QObject *parent)
25
 
    : QObject(parent)
26
 
     ,m_handle(0)
 
38
    : ApplicationInfoInterface(QString(), parent)
27
39
     ,m_stage(MainStage)
28
40
     ,m_state(Starting)
 
41
     ,m_focused(false)
29
42
     ,m_fullscreen(false)
30
43
     ,m_windowItem(0)
31
44
     ,m_windowComponent(0)