Fix interfaces().
This commit is contained in:
parent
00dbf4485a
commit
9fa37d125d
@ -185,11 +185,13 @@ QStringList ATBVMCPlugin::interfaces() const {
|
|||||||
QStringList result;
|
QStringList result;
|
||||||
int const count = this->metaObject()->classInfoCount();
|
int const count = this->metaObject()->classInfoCount();
|
||||||
for (int i = 0; i < count; ++i) {
|
for (int i = 0; i < count; ++i) {
|
||||||
QString const info(QString::fromLatin1(this->metaObject()->classInfo(i).value()));
|
QString const name(QString::fromLatin1(this->metaObject()->classInfo(i).name()));
|
||||||
if (info == "Interface")
|
QString const value(QString::fromLatin1(this->metaObject()->classInfo(i).value()));
|
||||||
result << info;
|
if (name == "Interface") {
|
||||||
}
|
result << value;
|
||||||
return result;
|
}
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if QT_VERSION < 0x050000
|
#if QT_VERSION < 0x050000
|
||||||
|
Loading…
Reference in New Issue
Block a user