Index: sources/view/vview.h =================================================================== diff -u -rfe9182d85a7e707c5a476331e03ed493371f7f7f -r3676cd80ff97ac0785547e29e63f54b95b53f9f8 --- sources/view/vview.h (.../vview.h) (revision fe9182d85a7e707c5a476331e03ed493371f7f7f) +++ sources/view/vview.h (.../vview.h) (revision 3676cd80ff97ac0785547e29e63f54b95b53f9f8) @@ -46,14 +46,13 @@ //--------------------------------------------------------------------------------// // The child definition in cpp #define VIEW_DEF(vCLASS, vDATATYPE) \ -using namespace Gui ; \ using namespace View; \ vCLASS::vCLASS(QObject *parent) : QObject(parent) { \ initConnections(); \ } \ void vCLASS::initConnections() { \ ACTION_RECEIVE_BRIDGE_CONNECTION( \ - _GuiController, vDATATYPE); \ + Gui::_GuiController, vDATATYPE); \ } //--------------------------------------------------------------------------------// //--------- Please add the view type to the lists below to register them ---------//