iOS: Fix compilation warning

warning: unused variable 'iface' [-Wunused-variable]

Change-Id: I882b71e5ae4afac1f3eb8b59d378b1a0c6fcade1
Reviewed-by: Frederik Gladhorn <frederik.gladhorn@digia.com>
bb10
Tor Arne Vestbø 2014-07-03 18:45:30 +02:00
parent e4661df947
commit 715b41ce48
1 changed files with 1 additions and 2 deletions

View File

@ -65,8 +65,7 @@
QMacAccessibilityElement *element = cache->elementForId(anId);
if (!element) {
QAccessibleInterface *iface = QAccessible::accessibleInterface(anId);
Q_ASSERT(iface);
Q_ASSERT(QAccessible::accessibleInterface(anId));
element = [[self alloc] initWithId:anId withAccessibilityContainer: view];
cache->insertElement(anId, element);
}