diff --git a/openbr/openbr_plugin.cpp b/openbr/openbr_plugin.cpp index 32d83ff..f36780f 100644 --- a/openbr/openbr_plugin.cpp +++ b/openbr/openbr_plugin.cpp @@ -705,7 +705,7 @@ void Object::setProperty(const QString &name, QVariant value) if (metaObject()->property(index).isEnumType()) { // This is necessary because setProperty can only set enums - // using its integer value if the QVariant is of type int (or uint) + // using their integer value if the QVariant is of type int (or uint) bool ok; int v = value.toInt(&ok); if (ok) diff --git a/openbr/plugins/openbr_internal.h b/openbr/plugins/openbr_internal.h index e21103e..1627d8e 100644 --- a/openbr/plugins/openbr_internal.h +++ b/openbr/plugins/openbr_internal.h @@ -1,8 +1,6 @@ #ifndef OPENBR_INTERNAL_H #define OPENBR_INTERNAL_H -#include - #include "openbr/openbr_plugin.h" #include "openbr/core/resource.h"