Skip to content

Commit fec2281

Browse files
committedApr 17, 2023
Avoid breaking cppcheck test
1 parent 266754b commit fec2281

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed
 

‎src/core/settings/qgssettingsentrygroup.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@
2222
#include <QRegularExpression>
2323
#include <QDir>
2424

25+
QgsSettingsEntryGroup::QgsSettingsEntryGroup( QList<const QgsSettingsEntryBase *> settings )
26+
: QgsSettingsEntryGroup( settings, true )
27+
{
2528

29+
}
2630

2731
QgsSettingsEntryGroup::QgsSettingsEntryGroup( QList<const QgsSettingsEntryBase *> settings, bool fatalErrorIfInvalid )
2832
: mSettings( settings )

‎src/core/settings/qgssettingsentrygroup.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ class CORE_DEPRECATED_EXPORT QgsSettingsEntryGroup SIP_DEPRECATED
3939
{
4040
public:
4141
//! Constructor
42-
QgsSettingsEntryGroup( QList<const QgsSettingsEntryBase *> settings )
43-
: QgsSettingsEntryGroup( settings, true )
44-
{}
42+
QgsSettingsEntryGroup( QList<const QgsSettingsEntryBase *> settings );
4543
#ifdef SIP_RUN
4644
% MethodCode
4745
sipCpp = new QgsSettingsEntryGroup( *a0, false );

0 commit comments

Comments
 (0)
Please sign in to comment.