size_t -> unsigned, Qt QVariant has not constructor with size_t, at least
on OSX. I guess there is a typedef size_t unsigned somewhere on Linux...
This commit is contained in:
parent
d42cf11ec6
commit
e39e6f714a
|
@ -116,7 +116,7 @@ namespace Hurricane {
|
|||
_nextAction->setObjectName ( "viewer.file.nextBreakpoint" );
|
||||
_nextAction->setStatusTip ( tr("Proceed to the next breakpoint") );
|
||||
|
||||
for ( size_t i=0 ; i<CellHistorySize ; i++ ) {
|
||||
for ( unsigned i=0 ; i<CellHistorySize ; i++ ) {
|
||||
_cellHistoryAction[i] = new QAction ( this );
|
||||
_cellHistoryAction[i]->setObjectName ( QString("viewer.file.cellHistory[%1]").arg(i) );
|
||||
_cellHistoryAction[i]->setVisible ( false );
|
||||
|
|
Loading…
Reference in New Issue