Alexandre Neto
3dcb0c44c0
Adds tooltips to the add/remove variable buttons
2017-02-21 08:42:15 +10:00
Nyall Dawson
d19e70700f
Ensure all pointer variables are initialized to nullptr
2017-02-18 20:23:18 +10:00
Nyall Dawson
aed6c735a6
Swap QScopedPointer to std::unique_ptr
...
Why?
- no benefits to QScopedPointer over std::unique_ptr
- unlike QScopedPointer, std::unique_ptr has no overhead
over regular pointers
- using standard language features makes it more likely that
compilers can optimise this use and static analysers can
correctly handle code using unique_ptrs
- QScopedPointer has an (IMO) uncertain future (given that
Qt is dropping features which have become part of the c++
standard). Better to port now before wider use of QScopedPointer
in the codebase!
2017-02-07 12:08:57 +10:00
Nyall Dawson
bfdd9dc0b0
Fix some coverity null pointer dereference issues
2017-01-27 16:54:03 +10:00
Denis Rouzaud
0a63d1f2c2
[spellcheck] properly look into various cases and add more fixes"
2017-01-16 16:39:20 +01:00
Matthias Kuhn
33abb78ac5
Pass variable values as QVariant
2016-12-22 20:21:21 +01:00
Matthias Kuhn
45617fb292
Fix more Qt5.7 warnings
2016-11-11 15:43:21 +01:00
Nyall Dawson
4166a3ea62
Fix most clazy qstring-unneeded-heap-allocations warnings
...
By flipping string literals to QStringLiteral/QLatin1String
see
https://woboq.com/blog/qstringliteral.html
2016-10-24 15:26:24 +10:00
Matthias Kuhn
ca0bf6feb1
Don't use global static QIcon's, they crash Qt5 on exit
2016-04-12 12:01:44 +02:00
Nyall Dawson
17793c35fd
Try to fix doxygen errors/warnings on Debian nightlies
2016-01-10 15:25:49 +11:00
Nyall Dawson
576875e998
Followup 320c696 use clang-modernize to replace 0/NULL use with nullptr
2015-12-15 11:24:51 +11:00
Nyall Dawson
08ab4d4b70
Ensure all classes derived from QObject include the Q_OBJECT macro
2015-12-07 22:10:45 +11:00
Nyall Dawson
b7e1cae4f0
Switch double quoted single character to single quotes for some
...
QString methods
Using single quotes is a significant performance boost. Rough
benchmarks indicate the QString single quote methods take
about 15% of the time the double quote variants take.
2015-11-02 17:55:08 +11:00
Juergen E. Fischer
c3b027121a
debian packaging update and typo fix
2015-10-05 00:17:05 +02:00
Nyall Dawson
d0813410c1
Slightly improved keyboard navigation in variable editor
2015-09-14 20:13:43 +10:00
Nyall Dawson
390ea4e9ba
Sort variables in variable editor
2015-09-11 17:11:48 +10:00
Nyall Dawson
f628ebd423
Replace foreach with Q_FOREACH
...
For:
- consistency
- to make it immediately clear that this is a Qt macro and that it
works slightly differently to c++ for loops
2015-09-09 19:17:29 +10:00
Nyall Dawson
7c10760225
Followup 73ffb83a, finishing changing all Q_FOREACH to references
2015-09-09 19:17:19 +10:00
Salvatore Larosa
30407c377c
replacing some png icons with svg ones
2015-08-31 22:16:01 +02:00
Nyall Dawson
c24192b024
Fix leak in variable editor
2015-08-28 13:06:35 +10:00
Nyall Dawson
c9c12bc7f9
Fix warnings
2015-08-22 19:01:41 +10:00
Nyall Dawson
d6542276e7
Add a bunch of layer related variables, including things like
...
metadata, extent, crs, feature count, geometry types, etc...
2015-08-22 19:01:39 +10:00
Nyall Dawson
1c7a5b2dba
Add editor widget for editing QgsExpressionContextScope variables
2015-08-22 19:01:39 +10:00