@@ -1506,8 +1506,8 @@ void QgisApp::setupConnections()
1506
1506
connect ( mStopRenderButton , SIGNAL ( clicked () ), this , SLOT ( stopRendering () ) );
1507
1507
1508
1508
// Connect warning dialog from project reading
1509
- connect ( QgsProject::instance (), SIGNAL ( warnOlderProjectVersion ( QString ) ),
1510
- this , SLOT ( warnOlderProjectVersion ( QString ) ) );
1509
+ connect ( QgsProject::instance (), SIGNAL ( oldProjectVersionWarning ( QString ) ),
1510
+ this , SLOT ( oldProjectVersionWarning ( QString ) ) );
1511
1511
1512
1512
}
1513
1513
void QgisApp::createCanvas ()
@@ -1580,7 +1580,7 @@ void QgisApp::createOverview()
1580
1580
// add to the Panel submenu
1581
1581
mPanelMenu ->addAction ( mOverviewDock ->toggleViewAction () );
1582
1582
1583
- mMapCanvas ->setOverview ( overviewCanvas );
1583
+ mMapCanvas ->enableOverviewMode ( overviewCanvas );
1584
1584
1585
1585
// moved here to set anti aliasing to both map canvas and overview
1586
1586
QSettings mySettings;
@@ -3469,7 +3469,7 @@ void QgisApp::addAllToOverview()
3469
3469
{
3470
3470
if ( mMapLegend )
3471
3471
{
3472
- mMapLegend ->setOverviewAllLayers ( true );
3472
+ mMapLegend ->enableOverviewModeAllLayers ( true );
3473
3473
}
3474
3474
3475
3475
// notify the project we've made a change
@@ -3481,7 +3481,7 @@ void QgisApp::removeAllFromOverview()
3481
3481
{
3482
3482
if ( mMapLegend )
3483
3483
{
3484
- mMapLegend ->setOverviewAllLayers ( false );
3484
+ mMapLegend ->enableOverviewModeAllLayers ( false );
3485
3485
}
3486
3486
3487
3487
// notify the project we've made a change
@@ -5627,7 +5627,7 @@ void QgisApp::newBookmark()
5627
5627
// Slot that gets called when the project file was saved with an older
5628
5628
// version of QGIS
5629
5629
5630
- void QgisApp::warnOlderProjectVersion ( QString oldVersion )
5630
+ void QgisApp::oldProjectVersionWarning ( QString oldVersion )
5631
5631
{
5632
5632
QSettings settings;
5633
5633
0 commit comments