fix compile errors with functions not returning anything

This commit is contained in:
mrexodia 2017-03-30 04:49:43 +02:00
parent 0f2f037977
commit c7367b74b8
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
4 changed files with 4 additions and 0 deletions

View File

@ -10,4 +10,5 @@ QRDisasm::QRDisasm(QRCore *core)
bool QRDisasm::disassembleAt (ut64 addr, QRDisasmOption opt, QRDisasmRow &dr) { bool QRDisasm::disassembleAt (ut64 addr, QRDisasmOption opt, QRDisasmRow &dr) {
printf ("FUCK\n"); printf ("FUCK\n");
return false;
} }

View File

@ -134,4 +134,5 @@ bool CommentsWidget::eventFilter(QObject *obj, QEvent *event) {
} }
} }
} }
return false; //allow the event to be handled further
} }

View File

@ -377,4 +377,5 @@ bool FunctionsWidget::eventFilter(QObject *obj, QEvent *event) {
} }
} }
} }
return false; //allow the event to be handled further
} }

View File

@ -113,4 +113,5 @@ bool SectionsWidget::eventFilter(QObject *obj, QEvent *event) {
} }
} }
} }
return false; //allow the event to be handled further
} }