From e66326472eee21d9a95b9fc3543fc38562d593b3 Mon Sep 17 00:00:00 2001 From: Eelke Klein Date: Fri, 1 Sep 2017 10:22:13 +0200 Subject: [PATCH] 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. --- src/pglab/ParamListModel.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pglab/ParamListModel.h b/src/pglab/ParamListModel.h index 11acfc3..7363bde 100644 --- a/src/pglab/ParamListModel.h +++ b/src/pglab/ParamListModel.h @@ -1,4 +1,4 @@ -#ifndef PARAMLISTMODEL_H +#ifndef PARAMLISTMODEL_H #define PARAMLISTMODEL_H #include @@ -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)