mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-30 08:15:04 +00:00
fix compile errors with functions not returning anything
This commit is contained in:
parent
0f2f037977
commit
c7367b74b8
@ -10,4 +10,5 @@ QRDisasm::QRDisasm(QRCore *core)
|
||||
|
||||
bool QRDisasm::disassembleAt (ut64 addr, QRDisasmOption opt, QRDisasmRow &dr) {
|
||||
printf ("FUCK\n");
|
||||
return false;
|
||||
}
|
||||
|
@ -134,4 +134,5 @@ bool CommentsWidget::eventFilter(QObject *obj, QEvent *event) {
|
||||
}
|
||||
}
|
||||
}
|
||||
return false; //allow the event to be handled further
|
||||
}
|
||||
|
@ -377,4 +377,5 @@ bool FunctionsWidget::eventFilter(QObject *obj, QEvent *event) {
|
||||
}
|
||||
}
|
||||
}
|
||||
return false; //allow the event to be handled further
|
||||
}
|
||||
|
@ -113,4 +113,5 @@ bool SectionsWidget::eventFilter(QObject *obj, QEvent *event) {
|
||||
}
|
||||
}
|
||||
}
|
||||
return false; //allow the event to be handled further
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user