Skip to content

Commit 5f1670c

Browse files
committed
Allow tab split options on reports
1 parent b84383b commit 5f1670c

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

ui/flowgraphwidget.h

+2
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,8 @@ class BINARYNINJAUIAPI FlowGraphWidget: public QAbstractScrollArea, public View,
300300
bool getEdgeForMouseEvent(QMouseEvent* event, FlowGraphNodeRef& source,
301301
BinaryNinja::FlowGraphEdge& edge, bool& incoming);
302302

303+
FlowGraphWidget* duplicate();
304+
303305
Q_SIGNALS:
304306
void layoutComplete();
305307
void updateMiniGraph();

ui/reportcollectionwidget.h

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ class BINARYNINJAUIAPI ReportCollectionWidget: public QWidget, public ViewContai
2727

2828
virtual View* getView() override;
2929

30+
ReportCollectionWidget* duplicate();
31+
3032
private Q_SLOTS:
3133
void selectReport(int i);
3234
};

ui/reportwidget.h

+2
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,6 @@ private Q_SLOTS:
6060

6161
void save();
6262
void saveAs();
63+
64+
ReportWidget* duplicate();
6365
};

0 commit comments

Comments
 (0)