diff options
| author | Rusty Wagner <rusty.wagner@gmail.com> | 2022-04-04 22:45:42 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty.wagner@gmail.com> | 2022-04-07 14:55:25 -0400 |
| commit | 89b779d480225665b71d2675b52a8e04d1478cb7 (patch) | |
| tree | 750269185107eea5a182bbb6e122c588b8eee95e /ui | |
| parent | 5f32696a955fc2c80a799de4c3f74fc72e75d817 (diff) | |
Update to Qt 6.2.4
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/pane.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -145,7 +145,9 @@ class BINARYNINJAUIAPI ViewPane : public Pane virtual void focus() override; virtual QString title() override; +#ifndef BINARYNINJAUI_BINDINGS void recreateViewFrame(std::map<SyncGroup*, ViewLocation>& locations); +#endif void sendViewChange(); private Q_SLOTS: @@ -282,9 +284,11 @@ class BINARYNINJAUIAPI SplitPaneContainer : public QWidget void open(Pane* pane, Qt::Orientation primaryDirection = Qt::Vertical); +#ifndef BINARYNINJAUI_BINDINGS void recreateViewFrames(std::map<SyncGroup*, ViewLocation>& locations); +#endif - Q_SIGNALS: +Q_SIGNALS: void paneClosed(Pane* pane); void currentChanged(Pane* pane); void layoutChanged(); @@ -353,7 +357,9 @@ class BINARYNINJAUIAPI SplitPaneWidget : public QWidget bool closeRequest(); void closing(); +#ifndef BINARYNINJAUI_BINDINGS void recreateViewFrames(std::map<SyncGroup*, ViewLocation>& locations); +#endif static void registerActions(); |
