Renamed the QgsPenStyleComboBox Qt::NoPen entry to "No Line", which is

consistent with names for other entries.

Signed-off-by: Benjamin Jakimow <benjamin.jakimow@geo.hu-berlin.de>
This commit is contained in:
Benjamin Jakimow 2023-02-28 12:10:27 +01:00 committed by Nyall Dawson
parent 1a4bf27b2c
commit cf9264452c

View File

@ -29,7 +29,7 @@ QgsPenStyleComboBox::QgsPenStyleComboBox( QWidget *parent )
{
QList < QPair<Qt::PenStyle, QString> > styles;
styles << qMakePair( Qt::SolidLine, tr( "Solid Line" ) )
<< qMakePair( Qt::NoPen, tr( "No Pen" ) )
<< qMakePair( Qt::NoPen, tr( "No Line" ) )
<< qMakePair( Qt::DashLine, tr( "Dash Line" ) )
<< qMakePair( Qt::DotLine, tr( "Dot Line" ) )
<< qMakePair( Qt::DashDotLine, tr( "Dash Dot Line" ) )