Alexander Bruy
d19ccb7d6c
[processing] don't close dialog if execution fails ( fix #9893 )
2014-03-28 12:33:11 +02:00
Martin Dobias
4ff930e775
Merge pull request #1274 from simonsonc/explicit-link
...
Be explicit with Qt link libraries
2014-03-28 11:17:04 +01:00
Alexander Bruy
2b458e8895
[processing] show alforithm and help authors in Help tab ( fix #8917 )
2014-03-28 12:12:18 +02:00
Alexander Bruy
cd9aae70b6
fix error when copying gdalinfo output to clipboard ( fix #9882 )
2014-03-28 12:12:18 +02:00
Alexander Bruy
8c97462b08
add option to load result to canvas in Heatmap plugin ( fix #6645 )
2014-03-28 12:12:18 +02:00
Martin Dobias
e846a8986e
Merge remote-tracking branch 'simonsonc/rename-subtract'
2014-03-28 10:48:59 +01:00
Bas Couwenberg
3d44c5934a
Disable features on ARM.
...
Building QGIS on ARM produces the error:
sip: qgis/python/core/qgsclipper.sip:44: \
QgsClipper::trimFeature() unsupported function argument type - provide %MethodCode and a C++ signature
For the Android builds this was fixed in commit 2cc684793ceb29d8600d71564fb38f92c998f588.
This patch adapts the Android fix, by disabling the SIP features on all ARM systems.
Bug-Debian: http://bugs.debian.org/737814
2014-03-28 10:41:22 +01:00
Bas Couwenberg
7db6ae5412
Fix qreal vs double.
...
In qt4 on arm architectures qreal is defined as float while on other
architectures it is defined as double. This can cause problems if qreal
and double are carelessly mixed.
In this particular case the problem is that qMin/qMax are templates defined
to take two parameters of the same type. If two different types are passed
in then C++ can't resolve what type the template parameter should be and
bails out. The fix is simple, typecast one of the parameters so they
match.
Author: Peter Michael Green <plugwash@debian.org>
Bug-Debian: http://bugs.debian.org/737814
2014-03-28 10:39:35 +01:00
Bas Couwenberg
03b028dbf7
On armel/armhf qreal is typedef'ed to float not double.
...
This patch adds qreal versions of some functions on arm. It was originally
writen by Konstantinos Margaritis and later fixed by Peter Michael Green.
Bug-Debian: http://bugs.debian.org/691333
2014-03-28 10:37:13 +01:00
Carl Simonson
8dff030787
Be explicit with Qt link libraries
...
For the analysis tests, instead of linking with all the found
QT_LIBRARIES, pick only the ones that are needed.
2014-03-27 18:43:49 -05:00
Carl Simonson
1bcd154709
Replace "subtract" with "subtracted"
...
The QRegion::subtract method has been replaced with subtracted. The
functionality is the same.
2014-03-27 18:37:53 -05:00
Carl Simonson
9bf96cbc3e
Remove unused include
...
This "QMenuItem" include is not used, and it's also a Qt 3 leftover.
Remove it.
2014-03-27 18:28:13 -05:00
Alexander Bruy
984fe0e8f5
refresh map canvas after pasting style ( fix #9908 )
2014-03-27 20:26:59 +02:00
Alexander Bruy
e6081fa9e1
[processing] skip invalid geometries when performing intersection ( fix #9410 )
2014-03-27 19:56:46 +02:00
Victor Olaya
6f3046caf1
[processing] fixed error when running script algorithm from script editor ( fixes #9905 )
2014-03-27 15:13:20 +01:00
Victor Olaya
e63b75c57c
[processing] modeler dialog now saves automatically the model before executing it
2014-03-27 15:01:32 +01:00
Victor Olaya
3c7a680661
[processing] fixed exporting model to python (replaced 'Processing' reference with 'processing')
2014-03-27 14:54:09 +01:00
Marco Hugentobler
ad6d2b401d
Access to layer data of interpolator
2014-03-27 14:48:29 +01:00
Alexander Bruy
34421c896f
assign CRS to interpolation output ( fix #3578 )
2014-03-27 14:48:29 +01:00
Etienne Tourigny
344383b108
Merge pull request #1269 from etiennesky/rldhont-netcdf_generateBandName
...
[Feature][RASTER] Generate band name with NetCDF EXTRA_DIM funded by Ifremer
2014-03-27 10:46:49 -03:00
Radim Blazek
3dfacc77bc
identify/highlight default constants
2014-03-27 14:25:38 +01:00
Victor Olaya
8fff180ac0
[processing] added support for multiline strings in scripts
2014-03-27 14:24:44 +01:00
Victor Olaya
7f0bc42ea5
[processing]added new example script (contributed by Michael Douchin)
2014-03-27 14:24:43 +01:00
Juergen E. Fischer
7b0af0df3c
fix warnings
2014-03-27 14:15:40 +01:00
Radim Blazek
0bdca1f9b4
missing identify/highlight sip methods
2014-03-27 13:45:25 +01:00
Borys Jurgiel
cdbe1ee303
[Plugin manager] Replace confirmation popup dialogs with an internal QgsMessageBar
2014-03-27 11:20:53 +01:00
Martin Dobias
7a70041680
Change also SIP files to use WindowFlags instead of WFlags
2014-03-27 10:43:11 +01:00
Carl Simonson
665f0a32fe
Replace WFlags with WindowFlags
...
It has long been in Qt 4 that the WFlags window flags argument has been
renamed to WindowFlags. In fact, WFlags is just a typedef to WindowFlags.
In Qt 5, this will go away, so we can change this now to make transition
easier in the future.
This should not have any affect on API or ABI, as the symbol names already
have WindowFlags in them anyway.
This change concentrates on the sources in the src directory. There are
a few more places in the python directory that can be done later.
2014-03-27 10:43:11 +01:00
Juergen E. Fischer
a838700801
avoid warning messages on composer arrows without markers
2014-03-27 10:29:53 +01:00
Jürgen Fischer
b4b01550e4
Merge pull request #1265 from nyalldawson/postgis_time
...
Make PostGIS provider correctly create time and datetime formats
2014-03-27 10:16:56 +01:00
Alexander Bruy
48b9ccbc69
[ftools] use int column for point count ( fix #9432 )
2014-03-26 21:00:29 +02:00
mhugent
019f121720
Merge pull request #1264 from olivierdalang/fix_9334
...
fix #9334
2014-03-26 19:51:12 +01:00
Alexander Bruy
3d6f17b067
[processing] handle non-ASCII characters when running GRASS algorithms
...
(addresses #5420 )
2014-03-26 19:54:30 +02:00
Alexander Bruy
3bedc702c7
[processing] move OTB output to INFO tab, fix deprecation warning
2014-03-26 19:54:30 +02:00
Alexander Bruy
e484500d40
[processing] enable temporary outputs in QGIS Field Calculator ( fix #9401 )
2014-03-26 19:54:30 +02:00
Radim Blazek
aefc892588
identify and other map tools changed to use search radius in mm
2014-03-26 18:51:25 +01:00
Martin Dobias
f68e47f6a8
Fix symbol's size/width not being updated in GUI on load
2014-03-26 17:50:34 +01:00
Werner Macho
8bb1304ff9
Merge pull request #1268 from milenanv/qgis_trans_pl
...
[TRANSUP] pl by milena
2014-03-26 16:45:37 +01:00
Alexander Bruy
05ce12062c
[processing] show confirmation when closing modeler with unsaved model
...
(fix #9889 )
2014-03-26 16:53:13 +02:00
Martin Dobias
f8a558a680
Merge pull request #1245 from simonsonc/remove-qtgui
...
Remove include of QtGui in favor of individual includes
2014-03-26 15:45:19 +01:00
Martin Dobias
d0c93b94b2
Merge pull request #1244 from simonsonc/qt-no-deprecated
...
Fix uses of deprecated Qt methods
2014-03-26 15:37:59 +01:00
Mathias Walker
9445c9af53
Globe: anti-aliasing disabled by default
2014-03-26 15:21:11 +01:00
Mathias Walker
8cbf56f3e3
fix globe sync extent
2014-03-26 15:00:48 +01:00
Victor Olaya
b74cb427de
[processing] improved algorithm filtering in toolbox
2014-03-26 14:57:10 +01:00
Victor Olaya
eb360e0b37
[processing] fixed display ad handling of optional table fields in parameters panel
2014-03-26 14:57:09 +01:00
Alexander Bruy
cbeb5288b5
[processing] add Buffer option to Voronoi polygons tool ( fix #7661 )
2014-03-26 15:21:13 +02:00
Alexander Bruy
024f6a12f3
[processing] fix handling of optional string arguments ( fix #9109 , 9120)
2014-03-26 15:04:21 +02:00
Victor Olaya
92ee039f10
[processing] added drag&drop support in modeler
2014-03-26 13:38:07 +01:00
Mathias Walker
abc7b9b807
fix #8298 ignored first selection of recently used CRS in projection selector
2014-03-26 11:50:02 +01:00
volaya
36bd2d000a
Merge pull request #1235 from m-kuhn/httplib
...
Add new CMake option: WITH_INTERNAL_HTTPLIB (default True)
2014-03-26 11:29:30 +01:00