Commit a5150a010cac71466c7a7bc380a2e7ce0cd9f9ed
1 parent
343fa96a
oops, fix compile
Signed-off-by: caotto <ottochar@gmail.com>
Showing
1 changed file
with
1 additions
and
1 deletions
sdk/openbr_plugin.cpp
| ... | ... | @@ -647,7 +647,7 @@ int br::Context::blocks(int size) const |
| 647 | 647 | |
| 648 | 648 | bool br::Context::contains(const QString &name) |
| 649 | 649 | { |
| 650 | - QByteArray bytes = name.toLocal8Bit | |
| 650 | + QByteArray bytes = name.toLocal8Bit(); | |
| 651 | 651 | const char * c_name = bytes.constData(); |
| 652 | 652 | |
| 653 | 653 | for (int i=0; i<metaObject()->propertyCount(); i++) | ... | ... |