Skip to content

Commit a3606d3

Browse files
author
jef
committedDec 20, 2008
apply r9875 to r9877 from trunk
git-svn-id: http://svn.osgeo.org/qgis/branches/Version-1_0@9878 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 82bbd82 commit a3606d3

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed
 

‎debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
qgis (1.0preview18) experimental; urgency=low
2+
3+
* add suggestion for gpsbabel
4+
5+
-- JÃŒrgen E. Fischer <jef@norbit.de> Sat, 20 Dec 2008 19:08:34 +0100
6+
17
qgis (1.0preview17) experimental; urgency=low
28

39
* include quickprint and coordinate capture plugin

‎debian/control

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Package: qgis
1818
Architecture: any
1919
Depends: ${shlibs:Depends}, ${misc:Depends}
2020
Recommends: qgis-plugin-grass, python-qgis
21+
Suggests: gpsbabel
2122
Conflicts: uim-qt3
2223
Description: Geographic Information System (GIS)
2324
A Geographic Information System (GIS) manages, analyzes, and displays

‎debian/rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ CMAKE_OPTS = \
1818
-D CMAKE_INSTALL_PREFIX=/usr \
1919
-D CMAKE_SKIP_RPATH=TRUE \
2020
-D BINDINGS_GLOBAL_INSTALL=TRUE \
21-
-D PEDANTIC=TRUE \
21+
-D PEDANTIC=TRUE
2222

2323
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
2424
CFLAGS += -O0

‎src/app/composer/qgscomposer.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -600,18 +600,18 @@ void QgsComposer::on_mActionExportAsSVG_activated( void )
600600
m->setCheckBoxVisible( true );
601601
m->setCheckBoxQSettingsLabel( myQSettingsLabel );
602602
m->setMessageAsHtml( tr( "<p>The SVG export function in Qgis has several "
603-
"problems due to bugs and deficiencies in the "
603+
"problems due to bugs and deficiencies in the " )
604604
#if QT_VERSION < 0x040300
605-
"Qt4 svg code. Of note, text does not "
605+
+ tr( "Qt4 svg code. Of note, text does not "
606606
"appear in the SVG file and there are problems "
607607
"with the map bounding box clipping other items "
608-
"such as the legend or scale bar.</p>"
608+
"such as the legend or scale bar.</p>" )
609609
#else
610-
"Qt4 svg code. In particular, there are problems "
610+
+ tr( "Qt4 svg code. In particular, there are problems "
611611
"with layers not being clipped to the map "
612-
"bounding box.</p>"
612+
"bounding box.</p>" )
613613
#endif
614-
"If you require a vector-based output file from "
614+
+ tr( "If you require a vector-based output file from "
615615
"Qgis it is suggested that you try printing "
616616
"to PostScript if the SVG output is not "
617617
"satisfactory."

‎src/plugins/gps_importer/qgsgpsplugingui.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,8 @@ void QgsGPSPluginGui::populatePortComboBoxes()
335335
break;
336336
}
337337

338+
cmbDLPort->addItem( "usb:" );
339+
cmbULPort->addItem( "usb:" );
338340
#endif
339341

340342
#ifdef __FreeBSD__ // freebsd

0 commit comments

Comments
 (0)
Please sign in to comment.