Statistics
| Branch: | Tag: | Revision:

qgis / src / app / qgsversioninfo.cpp @ master

History | View | Annotate | Download (3.14 KB)

# Date Author Comment
19565032 2021-08-13 07:25 AM Nyall Dawson

const ALL the things

Use clang-tidy const correctness fixit to add const to all
variables which it can

c6370c7f 2021-03-05 02:23 AM Nyall Dawson

Speed up QGIS compilation by removing all Qt Module-wide includes

Refs https://www.kdab.com/beware-of-qt-module-wide-includes/

bdcaae56 2021-02-25 02:08 AM Nyall Dawson

Fix a bunch of new Qt deprecation warnings

208ea9b0 2019-11-02 03:01 PM Matthias Kuhn

More Q_GLOBAL_STATIC

Because it's pure fun

32131527 2017-10-15 11:10 PM Jürgen Fischer

query version from version.qgis.org instead of ubuntu.qgis.org

8c3939e7 2017-09-27 09:25 PM Nyall Dawson

More efficient use of QStrings

- use .isEmpty() instead of == QLatin1String( "" ) to check for
empty strings
- use .clear() instead of = QLatin1String( "" ) to empty a string
- remove unnecessary QString initializations

a87d352b 2017-09-26 09:02 PM Nyall Dawson

Run clang-tidy modernize-use-default-member-init to move member
initialization to headers (c++11 style)

78685e1a 2017-03-30 03:11 AM Nyall Dawson

Qt5 style connects

dccf8c9e 2017-03-03 09:09 AM Denis Rouzaud

run astyle on src/app

9d4adc1c 2016-12-28 07:59 AM Nyall Dawson

Remove some singletons by moving instances to QgsApplication

- QgsColorSchemeRegistry
- QgsDataItemProviderRegistry
- QgsGPSConnectionRegistry
- QgsMessageLog
- QgsPaintEffectRegistry
- QgsPluginLayerRegistry
- QgsRasterRendererRegistry
- QgsRendererRegistry...

4166a3ea 2016-10-24 07:26 AM Nyall Dawson

Fix most clazy qstring-unneeded-heap-allocations warnings

By flipping string literals to QStringLiteral/QLatin1String

see

https://woboq.com/blog/qstringliteral.html

1a2231f1 2016-07-21 02:01 PM Nyall Dawson

Rename QGis class to Qgis, for capitalisation consistency

25a727a0 2016-02-15 12:12 AM Sebastian Dietrich

show correct host name when version check fails to find host

764c6498 2016-01-23 10:40 PM Jürgen Fischer

potential fix for PyQgsAppStartup by avoiding cloudflare

b7e1cae4 2015-11-02 07:55 AM Nyall Dawson

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.

ac6c3242 2015-08-28 05:06 AM Nyall Dawson

Coverity uninitialized member fixes

9ce6b6b2 2015-08-20 11:29 PM Nyall Dawson

Fix whitespace

bb69f166 2015-08-19 04:45 PM Matthias Kuhn

Add version info to the welcome screen