size_t -> int ... this time
This commit is contained in:
parent
7752e70a05
commit
a387532310
|
@ -124,7 +124,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 ( int 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