Re: [Development] -Winconsistent-missing-override warning with latest Xcode and Qt 5.5

2015-07-02 Thread Liang Jian
Thanks for the reply.
I think I have to modify the Qt header file to solve this issue.

On Thu, Jul 2, 2015 at 3:09 PM, Bo Thorsen b...@vikingsoft.eu wrote:

 Den 01-07-2015 kl. 18:36 skrev Edward Sutton:
  Is there a work-around I could use in my Qt project file?
 
  Upgrade to 5.5.1. It's already fixed.
 
  The problem was not deemed important enough to affect the 5.5.0
 release.
 
 
  My Chicago based sales rep told me that ( somewhere buried in my license
  fine print ) I could not release software using unreleased versions of
  Qt Enterprise.

 Your boss should tell you not to release software based on a 2 day old
 x.y.0 release.

 Bo Thorsen,
 Director, Viking Software.

 --
 Viking Software
 Qt and C++ developers for hire
 http://www.vikingsoft.eu
 ___
 Development mailing list
 Development@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/development

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] -Winconsistent-missing-override warning with latest Xcode and Qt 5.5

2015-07-02 Thread Bo Thorsen
Den 01-07-2015 kl. 18:36 skrev Edward Sutton:
 Is there a work-around I could use in my Qt project file?

 Upgrade to 5.5.1. It's already fixed.

 The problem was not deemed important enough to affect the 5.5.0 release.


 My Chicago based sales rep told me that ( somewhere buried in my license
 fine print ) I could not release software using unreleased versions of
 Qt Enterprise.

Your boss should tell you not to release software based on a 2 day old 
x.y.0 release.

Bo Thorsen,
Director, Viking Software.

-- 
Viking Software
Qt and C++ developers for hire
http://www.vikingsoft.eu
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] -Winconsistent-missing-override warning with latest Xcode and Qt 5.5

2015-07-02 Thread Edward Sutton


On Jul 2, 2015, at 2:09 AM, Bo Thorsen 
b...@vikingsoft.eumailto:b...@vikingsoft.eu wrote:

Den 01-07-2015 kl. 18:36 skrev Edward Sutton:
Is there a work-around I could use in my Qt project file?

Upgrade to 5.5.1. It's already fixed.

The problem was not deemed important enough to affect the 5.5.0 release.


My Chicago based sales rep told me that ( somewhere buried in my license
fine print ) I could not release software using unreleased versions of
Qt Enterprise.

Your boss should tell you not to release software based on a 2 day old
x.y.0 release.

I have been updating using Qt 5.5.0 at every snapshot and RC and I feel 
comfortable using a 2 day old release that I have been using since before the 
first Qt 5.5.0 alpha.

My feel is that Qt developers targeting Android and iOS mobile devices do not 
have much choice but to chase the bleeding edge.

I expect cross-platform alternatives such as Xamarin may have similar but other 
challenges.

-Ed


Bo Thorsen,
Director, Viking Software.

--
Viking Software
Qt and C++ developers for hire
http://www.vikingsoft.eu
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development

This email and any files transmitted with it from The Charles Machine Works, 
Inc. are confidential and intended solely for the use of the individual or 
entity to which they are addressed. If you have received this email in error 
please notify the sender. Our company accepts no liability for the contents of 
this email, or for the consequences of any actions taken on the basis of the 
information provided, unless that information is subsequently confirmed in 
writing. Please note that any views or opinions presented in this email are 
solely those of the author and do not necessarily represent those of the 
company. Finally, the recipient should check this email and any attachments for 
the presence of viruses. The company accepts no liability for any damage caused 
by any virus transmitted by this email.
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] -Winconsistent-missing-override warning with latest Xcode and Qt 5.5

2015-07-02 Thread Thiago Macieira
On Thursday 02 July 2015 13:47:26 Edward Sutton wrote:
 Is there a work-around I could use in my Qt project file?

Apply the fix to qcompilerdetection.h

https://codereview.qt-project.org/gitweb?p=qt/qtbase.git;a=patch;h=7d5e849e2808e9051a6d3ab19f29109b852f7bc9
-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] -Winconsistent-missing-override warning with latest Xcode and Qt 5.5

2015-07-02 Thread Olivier Goffart
On Thursday 2. July 2015 08:41:12 Thiago Macieira wrote:
 On Thursday 02 July 2015 13:47:26 Edward Sutton wrote:
  Is there a work-around I could use in my Qt project file?
 
 Apply the fix to qcompilerdetection.h
 
 https://codereview.qt-project.org/gitweb?p=qt/qtbase.git;a=patch;h=7d5e849e2
 808e9051a6d3ab19f29109b852f7bc9

Or if you can't apply the petch, you can add -fno-unknown-pragmas to your 
compiler flags

-- 
Olivier 

Woboq - Qt services and support - http://woboq.com - http://code.woboq.org
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] -Winconsistent-missing-override warning with latest Xcode and Qt 5.5

2015-07-01 Thread Oswald Buddenhagen
On Wed, Jul 01, 2015 at 04:36:02PM +, Edward Sutton wrote:
 Is there a work-around I could use in my Qt project file?
 
 Upgrade to 5.5.1. It's already fixed.
 
 The problem was not deemed important enough to affect the 5.5.0 release.
 
 
 My Chicago based sales rep told me that ( somewhere buried in my license fine 
 print ) I could not release software using unreleased versions of Qt 
 Enterprise.
 
that makes sense for feature releases, but not for bugfixes. otherwise,
qt support wouldn't be able to supply you with fixes, either, as these
obviously create unreleased versions of qt, too.

 Lawyers frighten me much more than chief architects. :-)
 
lawyers still put their pants on one leg at a time.

IANAL, YMMV, blah blah blah

 -Ed
 
 
 
 
 
 On Jul 1, 2015, at 10:19 AM, Thiago Macieira 
 thiago.macie...@intel.commailto:thiago.macie...@intel.com wrote:
 
 On Wednesday 01 July 2015 15:15:19 Edward Sutton wrote:
 Is there a work-around I could use in my Qt project file?
 
 Upgrade to 5.5.1. It's already fixed.
 
 The problem was not deemed important enough to affect the 5.5.0 release.
 --
 Thiago Macieira - thiago.macieira (AT) intel.comhttp://intel.com
  Software Architect - Intel Open Source Technology Center
 
 ___
 Development mailing list
 Development@qt-project.orgmailto:Development@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/development
 
 This email and any files transmitted with it from The Charles Machine Works, 
 Inc. are confidential and intended solely for the use of the individual or 
 entity to which they are addressed. If you have received this email in error 
 please notify the sender. Our company accepts no liability for the contents 
 of this email, or for the consequences of any actions taken on the basis of 
 the information provided, unless that information is subsequently confirmed 
 in writing. Please note that any views or opinions presented in this email 
 are solely those of the author and do not necessarily represent those of the 
 company. Finally, the recipient should check this email and any attachments 
 for the presence of viruses. The company accepts no liability for any damage 
 caused by any virus transmitted by this email.

 ___
 Development mailing list
 Development@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/development

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] -Winconsistent-missing-override warning with latest Xcode and Qt 5.5

2015-07-01 Thread Olivier Goffart
On Wednesday 1. July 2015 16:50:09 Stephen Kelly wrote:
 Hello,
 
 I just tried building Qt 5.5 with Xcode 6.3.2. It built, but emitted
 many warnings for each translation unit about
 -Winconsistent-missing-override.

https://codereview.qt-project.org/115201

It was just too late for Qt 5.5.0 but it will be in 5.5.1


-- 
Olivier 

Woboq - Qt services and support - http://woboq.com - http://code.woboq.org
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] -Winconsistent-missing-override warning with latest Xcode and Qt 5.5

2015-07-01 Thread Thiago Macieira
On Wednesday 01 July 2015 15:15:19 Edward Sutton wrote:
 Is there a work-around I could use in my Qt project file?

Upgrade to 5.5.1. It's already fixed.

The problem was not deemed important enough to affect the 5.5.0 release.
-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] -Winconsistent-missing-override warning with latest Xcode and Qt 5.5

2015-07-01 Thread Thiago Macieira
On Wednesday 01 July 2015 18:55:24 Oswald Buddenhagen wrote:
  My Chicago based sales rep told me that ( somewhere buried in my license
  fine print ) I could not release software using unreleased versions of Qt
  Enterprise.
  
 
 that makes sense for feature releases, but not for bugfixes. otherwise,
 qt support wouldn't be able to supply you with fixes, either, as these
 obviously create unreleased versions of qt, too.

Indeed.

But to put your mind at ease, you can just apply this patch and it won't get 
you the other unreleased changes:

https://codereview.qt-project.org/gitweb?p=qt/qtbase.git;a=patch;h=7d5e849e2808e9051a6d3ab19f29109b852f7bc9

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] -Winconsistent-missing-override warning with latest Xcode and Qt 5.5

2015-07-01 Thread Edward Sutton
Is there a work-around I could use in my Qt project file?

Upgrade to 5.5.1. It's already fixed.

The problem was not deemed important enough to affect the 5.5.0 release.


My Chicago based sales rep told me that ( somewhere buried in my license fine 
print ) I could not release software using unreleased versions of Qt Enterprise.


Lawyers frighten me much more than chief architects. :-)

-Ed





On Jul 1, 2015, at 10:19 AM, Thiago Macieira 
thiago.macie...@intel.commailto:thiago.macie...@intel.com wrote:

On Wednesday 01 July 2015 15:15:19 Edward Sutton wrote:
Is there a work-around I could use in my Qt project file?

Upgrade to 5.5.1. It's already fixed.

The problem was not deemed important enough to affect the 5.5.0 release.
--
Thiago Macieira - thiago.macieira (AT) intel.comhttp://intel.com
 Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.orgmailto:Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development

This email and any files transmitted with it from The Charles Machine Works, 
Inc. are confidential and intended solely for the use of the individual or 
entity to which they are addressed. If you have received this email in error 
please notify the sender. Our company accepts no liability for the contents of 
this email, or for the consequences of any actions taken on the basis of the 
information provided, unless that information is subsequently confirmed in 
writing. Please note that any views or opinions presented in this email are 
solely those of the author and do not necessarily represent those of the 
company. Finally, the recipient should check this email and any attachments for 
the presence of viruses. The company accepts no liability for any damage caused 
by any virus transmitted by this email.
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development