Hello I have project which i can compile in Qt Creator. Now I installed Visual Studio 2013 Ultimate
and Qt AddIn
. When I try Debug this project in Visual Studio
I get error:
Error 4 error C2661: 'QMap<int, Model*>::QMap' : no overloaded function takes 5 arguments D:\projekt... 24 1 projekt
definition of QMap:
QMap<int, Model*> modelItems =
{
{1, new Model("One")},
{2, new Model("Two")},
{3, new Model("Three")},
{4, new Model("Four")},
{5, new Model("Five")},
};
And my next question:
* Is there possibility to compile version for Windows Phone if I use qml for GUI ?