mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
Style fixes
This commit is contained in:
parent
91a16e4afa
commit
536c586968
@ -22,7 +22,6 @@
|
||||
%Include qgsabstractdatasourcewidget.sip
|
||||
%Include qgssourceselectprovider.sip
|
||||
%Include qgssourceselectproviderregistry.sip
|
||||
%Include qgsvscrollarea.sip
|
||||
%Include attributetable/qgsfeaturemodel.sip
|
||||
%Include auth/qgsauthauthoritieseditor.sip
|
||||
%Include auth/qgsauthcertificateinfo.sip
|
||||
@ -201,6 +200,7 @@
|
||||
%Include qgstreewidgetitem.sip
|
||||
%Include qgsunitselectionwidget.sip
|
||||
%Include qgsvariableeditorwidget.sip
|
||||
%Include qgsvscrollarea.sip
|
||||
%Include qgsfiledownloaderdialog.sip
|
||||
%Include raster/qgsmultibandcolorrendererwidget.sip
|
||||
%Include raster/qgspalettedrendererwidget.sip
|
||||
|
@ -53,7 +53,7 @@ void QgsGeometryLineLayerIntersectionCheck::collectErrors( QList<QgsGeometryChec
|
||||
}
|
||||
else if ( const QgsPolygon *polygon = dynamic_cast<const QgsPolygon *>( part ) )
|
||||
{
|
||||
QList< const QgsLineString* > rings = QgsGeometryCheckerUtils::polygonRings( polygon );
|
||||
QList< const QgsLineString * > rings = QgsGeometryCheckerUtils::polygonRings( polygon );
|
||||
for ( const QgsLineString *ring : rings )
|
||||
{
|
||||
const QList< QgsPoint > intersections = QgsGeometryCheckerUtils::lineIntersections( line, ring, mContext->tolerance );
|
||||
|
@ -45,8 +45,8 @@ QList< QPair<QString, QString> > QgsGpsDetector::availablePorts()
|
||||
#ifdef Q_OS_LINUX
|
||||
// look for linux serial devices
|
||||
const QStringList devices { QStringLiteral( "/dev/ttyS%1" ),
|
||||
QStringLiteral( "/dev/ttyUSB%1" ),
|
||||
QStringLiteral( "/dev/rfcomm%1" ), QStringLiteral( "/dev/ttyACM%1" ) };
|
||||
QStringLiteral( "/dev/ttyUSB%1" ),
|
||||
QStringLiteral( "/dev/rfcomm%1" ), QStringLiteral( "/dev/ttyACM%1" ) };
|
||||
for ( const QString &linuxDev : devices )
|
||||
{
|
||||
for ( int i = 0; i < 10; ++i )
|
||||
|
Loading…
x
Reference in New Issue
Block a user