Fix warning on GCC 4.6

This commit is contained in:
John Maguire 2011-10-06 14:24:33 +02:00
parent 5e343611bf
commit 265b174dc9
1 changed files with 1 additions and 0 deletions

View File

@ -51,6 +51,7 @@ void Closure::Connect(QObject* sender, const char* signal) {
Q_ASSERT(success);
success = connect(sender, SIGNAL(destroyed()), SLOT(Cleanup()));
Q_ASSERT(success);
Q_UNUSED(success);
}
void Closure::Invoked() {