Skip to content

Commit eb86eca

Browse files
committedJun 13, 2014
Remove deprecated option "add new layers to the current group" (now always on)
1 parent f581e20 commit eb86eca

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed
 

‎src/app/qgsoptions.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,6 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WindowFlags fl ) :
574574
cbxSnappingOptionsDocked->setChecked( settings.value( "/qgis/dockSnapping", false ).toBool() );
575575
cbxAddPostgisDC->setChecked( settings.value( "/qgis/addPostgisDC", false ).toBool() );
576576
cbxAddOracleDC->setChecked( settings.value( "/qgis/addOracleDC", false ).toBool() );
577-
cbxAddNewLayersToCurrentGroup->setChecked( settings.value( "/qgis/addNewLayersToCurrentGroup", false ).toBool() );
578577
cbxCreateRasterLegendIcons->setChecked( settings.value( "/qgis/createRasterLegendIcons", false ).toBool() );
579578
cbxCopyWKTGeomFromTable->setChecked( settings.value( "/qgis/copyGeometryAsWKT", true ).toBool() );
580579
leNullValue->setText( settings.value( "qgis/nullValue", "NULL" ).toString() );
@@ -1066,7 +1065,6 @@ void QgsOptions::saveOptions()
10661065
settings.setValue( "/qgis/dockSnapping", cbxSnappingOptionsDocked->isChecked() );
10671066
settings.setValue( "/qgis/addPostgisDC", cbxAddPostgisDC->isChecked() );
10681067
settings.setValue( "/qgis/addOracleDC", cbxAddOracleDC->isChecked() );
1069-
settings.setValue( "/qgis/addNewLayersToCurrentGroup", cbxAddNewLayersToCurrentGroup->isChecked() );
10701068
settings.setValue( "/qgis/defaultLegendGraphicResolution", mLegendGraphicResolutionSpinBox->value() );
10711069
bool createRasterLegendIcons = settings.value( "/qgis/createRasterLegendIcons", false ).toBool();
10721070
settings.setValue( "/qgis/createRasterLegendIcons", cbxCreateRasterLegendIcons->isChecked() );

‎src/ui/qgsoptionsbase.ui

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2504,13 +2504,6 @@
25042504
</item>
25052505
</layout>
25062506
</item>
2507-
<item>
2508-
<widget class="QCheckBox" name="cbxAddNewLayersToCurrentGroup">
2509-
<property name="text">
2510-
<string>Add new layers to selected or current group</string>
2511-
</property>
2512-
</widget>
2513-
</item>
25142507
<item>
25152508
<layout class="QHBoxLayout" name="horizontalLayout_34">
25162509
<item>

0 commit comments

Comments
 (0)
Please sign in to comment.