~loic.molinari/ubuntu-ui-toolkit/ubuntu-ui-toolkit-private-shapes

« back to all changes in this revision

Viewing changes to src/Ubuntu/Components/plugin/plugin.cpp

  • Committer: Loïc Molinari
  • Date: 2016-01-12 22:10:21 UTC
  • Revision ID: loic.molinari@canonical.com-20160112221021-yjj2hej5347pheyd
Renamed StrokeRectangle to Frame.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
#include "ucbottomedgeregion.h"
78
78
#include "ucbottomedgestyle.h"
79
79
#include "ucpagetreenode.h"
80
 
#include "privates/strokeshape.h"
 
80
#include "privates/frame.h"
81
81
 
82
82
#include <sys/types.h>
83
83
#include <unistd.h>
276
276
    qmlRegisterType<UCBottomEdgeStyle>(styleUri, 1, 3, "BottomEdgeStyle");
277
277
 
278
278
    // Register private types.
279
 
    qmlRegisterType<UCStrokeShape>("Ubuntu.Components.Private", 1, 3, "StrokeShape");
 
279
    qmlRegisterType<UCFrame>("Ubuntu.Components.Private", 1, 3, "Frame");
280
280
 
281
281
    QQmlExtensionPlugin::initializeEngine(engine, uri);
282
282
    QQmlContext* context = engine->rootContext();