mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
Fixed formatting (#2917)
This commit is contained in:
parent
085f5024b9
commit
3e168fb76a
@ -242,7 +242,7 @@ void AsmOptionsWidget::on_varsubCheckBox_toggled(bool checked)
|
|||||||
triggerAsmOptionsChanged();
|
triggerAsmOptionsChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
void AsmOptionsWidget::on_previewCheckBox_toggled( bool checked )
|
void AsmOptionsWidget::on_previewCheckBox_toggled(bool checked)
|
||||||
{
|
{
|
||||||
Config()->setPreviewValue(checked);
|
Config()->setPreviewValue(checked);
|
||||||
triggerAsmOptionsChanged();
|
triggerAsmOptionsChanged();
|
||||||
|
@ -85,7 +85,7 @@ void GraphOptionsWidget::on_graphOffsetCheckBox_toggled(bool checked)
|
|||||||
triggerOptionsChanged();
|
triggerOptionsChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
void GraphOptionsWidget::on_graphPreviewCheckBox_toggled( bool checked )
|
void GraphOptionsWidget::on_graphPreviewCheckBox_toggled(bool checked)
|
||||||
{
|
{
|
||||||
Config()->setGraphPreview(checked);
|
Config()->setGraphPreview(checked);
|
||||||
triggerOptionsChanged();
|
triggerOptionsChanged();
|
||||||
|
@ -33,8 +33,7 @@ protected:
|
|||||||
void setHasTarget(bool hasTarget);
|
void setHasTarget(bool hasTarget);
|
||||||
QAction *actionApplySignature;
|
QAction *actionApplySignature;
|
||||||
QAction *actionCopyLine;
|
QAction *actionCopyLine;
|
||||||
QAction *actionShowContents;
|
|
||||||
|
|
||||||
FlirtDescription entry;
|
FlirtDescription entry;
|
||||||
};
|
};
|
||||||
#endif // FlirtCONTEXTMENU_H
|
#endif // FLIRT_CONTEXTMENU_H
|
||||||
|
@ -551,7 +551,6 @@ void DecompilerWidget::highlightBreakpoints()
|
|||||||
for (RVA &bp : functionBreakpoints) {
|
for (RVA &bp : functionBreakpoints) {
|
||||||
if (bp == RVA_INVALID) {
|
if (bp == RVA_INVALID) {
|
||||||
continue;
|
continue;
|
||||||
;
|
|
||||||
}
|
}
|
||||||
cursor = getCursorForAddress(bp);
|
cursor = getCursorForAddress(bp);
|
||||||
if (!cursor.isNull()) {
|
if (!cursor.isNull()) {
|
||||||
|
@ -22,7 +22,7 @@ private:
|
|||||||
enum Allocator { Glibc = 0, AllocatorCount };
|
enum Allocator { Glibc = 0, AllocatorCount };
|
||||||
Ui::HeapDockWidget *ui;
|
Ui::HeapDockWidget *ui;
|
||||||
MainWindow *main;
|
MainWindow *main;
|
||||||
QWidget* currentHeapWidget = nullptr;
|
QWidget *currentHeapWidget = nullptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // HEAPDOCKWIDGET_H
|
#endif // HEAPDOCKWIDGET_H
|
||||||
|
Loading…
Reference in New Issue
Block a user