View Issue Details

IDProjectCategoryView StatusLast Update
0000110FreeCADBugpublic2010-06-21 05:45
Reporterunauthenticated Assigned Towmayer  
PrioritynormalSeverityblockReproducibilityalways
Status closedResolutionfixed 
Product Version0.10 
Summary0000110: Git unable to build due to commit 3243
DescriptionI believe that due to commit 3243, I get the following errors:

http://paste.pocoo.org/show/227484/

I am using gcc 4.5 and qt 4.6.3
Additional Informationcommit 3243
http://free-cad.svn.sourceforge.net/viewvc/free-cad?view=revision&revision=3243
TagsNo tags attached.
FreeCAD Information

Activities

unauthenticated

2010-06-20 19:52

viewer   ~0000248

I confirm the problem.
The problem no longer appears in commit 3248, which builds fine.

unauthenticated

2010-06-21 02:03

viewer   ~0000249

I am the original poster, and I can also confirm that it builds fine with 3248.
Please close this bug.

Cheers!

wmayer

2010-06-21 05:45

administrator   ~0000250

There is a weird issue with the QVariant operator of the class QKeySequence. Actually it should work this way:
QKeySequence ks = ...;
QVariant v = (QVariant)ks;

With VC++ this works without problems but not with gcc. But surprisingly this works under gcc:
QKeySequence ks = ...;
QVariant v = ks.operator QVariant();

which looks a bit strange but is actually exactly the same as above.

Issue History

Date Modified Username Field Change
2010-06-20 10:42 unauthenticated New Issue
2010-06-20 19:52 unauthenticated Note Added: 0000248
2010-06-21 02:03 unauthenticated Note Added: 0000249
2010-06-21 05:45 wmayer Note Added: 0000250
2010-06-21 05:45 wmayer Assigned To => wmayer
2010-06-21 05:45 wmayer Status new => closed
2010-06-21 05:45 wmayer Resolution open => fixed