Fix warnings about const argument in virtual method signature:
src\plugins\ios\iosrunfactories.h:70:
warning: C4373: 'Ios::Internal::IosRunConfigurationFactory::doCreate':
virtual function overrides
'ProjectExplorer::IRunConfigurationFactory::doCreate', previous versions
of the compiler did not override when parameters only differed by
const/volatile qualifiers
This apparently was missed in 93304df038
Change-Id: I3402b6b4899d963dc8270e959de0e8dcbb0c15b1
Reviewed-by: hjk <hjk121@nokiamail.com>
Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Currently we pass in some places by value, elsewhere by const ref and
for some weird reason also by const value in a lot of places. The latter
is particularly annoying, as it is also used in interfaces and therefore
forces all implementors to do the same, since leaving the "const" off is
causing compiler warnings with MSVC.
Change-Id: I65b87dc3cce0986b8a55ff6119cb752361027803
Reviewed-by: hjk <hjk121@nokiamail.com>
first work in progress support for ios
* separate iosTool using xml communication used for device info and run
* iossim tool to handle the simulator
* debug prepared but not working
* separate gcc toolchain detection fix for simulator
1) add a QT built for ios
2) open a project, for example qtbase/examples/widgets/animation/animatedtiles/animatedtiles.pro
3) build/run...
Change-Id: I7e01604e416338cbe4692dfb34f5d3f31312702d
Reviewed-by: Eike Ziller <eike.ziller@digia.com>