File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -125,8 +125,8 @@ void QgsComposerManager::refreshComposers()
125
125
if ( selectedComposers.contains ( i.value () ) )
126
126
{
127
127
selectionRestored = true ;
128
- int inDex = mComposerListWidget ->row ( i.key () );
129
- QModelIndex selectLine = mComposerListWidget ->model ()->index ( inDex , 0 , QModelIndex () );
128
+ int index = mComposerListWidget ->row ( i.key () );
129
+ QModelIndex selectLine = mComposerListWidget ->model ()->index ( index , 0 , QModelIndex () );
130
130
mComposerListWidget ->selectionModel ()->select ( selectLine, QItemSelectionModel::Select );
131
131
}
132
132
++i;
@@ -391,7 +391,7 @@ void QgsComposerManager::remove_clicked()
391
391
QList<QgsComposer *> composerList;
392
392
QList<QListWidgetItem *> composerItems = mComposerListWidget ->selectedItems ();
393
393
QString title = tr ( " Remove composers" );
394
- QString message = tr ( " Do you really want to remove all selected map composers ?" );
394
+ QString message = tr ( " Do you really want to remove all selected map composers?" );
395
395
396
396
if ( composerItems.isEmpty () )
397
397
{
You can’t perform that action at this time.
0 commit comments