Skip to content

Commit 016cc0b

Browse files
committed
Correct the output label's text in GdalTools Contour
1 parent 907f5c1 commit 016cc0b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

python/plugins/GdalTools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def name():
2222
def description():
2323
return "Integrate gdal tools into qgis"
2424
def version():
25-
return "Version 1.2.26"
25+
return "Version 1.2.27"
2626
def qgisMinimumVersion():
2727
return "1.0"
2828
def icon():

python/plugins/GdalTools/tools/doContour.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ def __init__(self, iface):
1919

2020
gdalVersion = Utils.GdalConfig.version()
2121
self.useDirAsOutput = gdalVersion < "1.7.0"
22+
if self.useDirAsOutput:
23+
self.label_2.setText( QApplication.translate("GdalToolsWidget", "&Output directory for contour lines (shapefile)") )
2224

2325
self.outSelector.setType( self.outSelector.FILE )
2426

python/plugins/GdalTools/tools/widgetContour.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<item row="1" column="0">
3636
<widget class="QLabel" name="label_2">
3737
<property name="text">
38-
<string>&amp;Output directory for contour lines (shapefile)</string>
38+
<string>&amp;Output file for contour lines (vector)</string>
3939
</property>
4040
<property name="buddy">
4141
<cstring>outSelector</cstring>

0 commit comments

Comments
 (0)