~aacid/unity8/doubleClickMaximize

« back to all changes in this revision

Viewing changes to tests/mocks/Utils/plugin.cpp

  • Committer: Albert Astals Cid
  • Date: 2017-01-31 14:12:16 UTC
  • mfrom: (2768.2.18 unity8.overflow)
  • Revision ID: albert.astals@canonical.com-20170131141216-uztd1cf58ztzruph
MergeĀ ~nick-dedekind/unity8/menu.overflow

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2015-2016 Canonical, Ltd.
 
2
 * Copyright (C) 2015-2017 Canonical, Ltd.
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or modify
5
5
 * it under the terms of the GNU General Public License as published by
41
41
#include <deviceconfigparser.h>
42
42
#include <globalfunctions.h>
43
43
#include <appdrawerproxymodel.h>
 
44
#include <tabfocusfence.h>
 
45
#include <expressionfiltermodel.h>
44
46
 
45
47
static QObject *createWindowStateStorage(QQmlEngine *engine, QJSEngine *scriptEngine)
46
48
{
84
86
    qmlRegisterSingletonType<GlobalFunctions>(uri, 0, 1, "Functions", createGlobalFunctions);
85
87
    qmlRegisterType<URLDispatcher>(uri, 0, 1, "URLDispatcher");
86
88
    qmlRegisterType<AppDrawerProxyModel>(uri, 0, 1, "AppDrawerProxyModel");
 
89
    qmlRegisterType<TabFocusFenceItem>(uri, 0, 1, "TabFocusFence");
 
90
    qmlRegisterType<ExpressionFilterModel>(uri, 0, 1, "ExpressionFilterModel");
87
91
}