Index: sources/gui/guiview.cpp =================================================================== diff -u -r70a248b93720a46cb3a0f60b092698acd2acc7c1 -r296e0e140bfeb193a9f571873afa6934143b1075 --- sources/gui/guiview.cpp (.../guiview.cpp) (revision 70a248b93720a46cb3a0f60b092698acd2acc7c1) +++ sources/gui/guiview.cpp (.../guiview.cpp) (revision 296e0e140bfeb193a9f571873afa6934143b1075) @@ -15,7 +15,6 @@ // Project #include "guicontroller.h" -#include "guiglobals.h" // namespace using namespace Gui; @@ -26,7 +25,7 @@ * \param parent - QObject parent owner object. * Qt handles the children destruction by their parent objects life-cycle. */ -GuiView::GuiView(QQuickItem *parent) +GuiView::GuiView(QObject *parent) { Q_UNUSED(parent) initConnections(); @@ -42,7 +41,7 @@ connect(&_GuiController, SIGNAL(didActionReceive (GuiActionType, const QVariantList &)), this , SLOT( onActionReceive (GuiActionType, const QVariantList &))); - // since we don't have access to GuiView object because it is created in Qml. + // since we don't have access to this object because it is created in Qml. // Connection to the GuiController made here // It should be defined in the class which wants to connect to signal. connect(this , SIGNAL(didActionTransmit(GuiActionType,const QVariantList &)),