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:
Eelke Klein 2017-09-01 10:22:13 +02:00
parent 8dc8c3a86d
commit e66326472e

View file

@ -1,4 +1,4 @@
#ifndef PARAMLISTMODEL_H
#ifndef PARAMLISTMODEL_H
#define PARAMLISTMODEL_H
#include <QAbstractTableModel>
@ -11,7 +11,7 @@ public:
class Param {
public:
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(const QString &v, const QString t)