Removed invalid default value for the type.
Caused a compiler error on FreeBSD. Either because of different Qt verion (5.7) or because of clang not sure which but that default was a nonsense left over of an older implementation anyway.
This commit is contained in:
parent
8dc8c3a86d
commit
e66326472e
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef PARAMLISTMODEL_H
|
#ifndef PARAMLISTMODEL_H
|
||||||
#define PARAMLISTMODEL_H
|
#define PARAMLISTMODEL_H
|
||||||
|
|
||||||
#include <QAbstractTableModel>
|
#include <QAbstractTableModel>
|
||||||
|
|
@ -11,7 +11,7 @@ public:
|
||||||
class Param {
|
class Param {
|
||||||
public:
|
public:
|
||||||
QString value; ///< the value of the parameter (currently this is passed directly)
|
QString value; ///< the value of the parameter (currently this is passed directly)
|
||||||
QString type = InvalidOid; ///< the type of the parameter
|
QString type; ///< the type of the parameter
|
||||||
|
|
||||||
Param() = default;
|
Param() = default;
|
||||||
Param(const QString &v, const QString t)
|
Param(const QString &v, const QString t)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue