Commit 84dc8e1e88dde52f17aada783db60031d77e6f05

Authored by Scott Klum
1 parent 18a33a56

Better English

openbr/openbr_plugin.cpp
... ... @@ -705,7 +705,7 @@ void Object::setProperty(const QString &name, QVariant value)
705 705  
706 706 if (metaObject()->property(index).isEnumType()) {
707 707 // This is necessary because setProperty can only set enums
708   - // using its integer value if the QVariant is of type int (or uint)
  708 + // using their integer value if the QVariant is of type int (or uint)
709 709 bool ok;
710 710 int v = value.toInt(&ok);
711 711 if (ok)
... ...
openbr/plugins/openbr_internal.h
1 1 #ifndef OPENBR_INTERNAL_H
2 2 #define OPENBR_INTERNAL_H
3 3  
4   -#include <QMetaProperty>
5   -
6 4 #include "openbr/openbr_plugin.h"
7 5 #include "openbr/core/resource.h"
8 6  
... ...