diff options
| author | Glenn Smith <glenn@vector35.com> | 2022-01-21 14:49:28 -0500 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2022-01-21 14:49:37 -0500 |
| commit | 81b82f44a2350144bb49c52f1b11a9cfc84da0cd (patch) | |
| tree | e89b7111215bb15f108225f656e68f3e13055bc9 | |
| parent | 12659a7e2227a2277b0ca62f7866921a70f7ea4d (diff) | |
Move OptionsDialog::queryViewTypes into public bool method
Fixes #2856
| -rw-r--r-- | ui/options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/options.h b/ui/options.h index d6288657..e3c2eab4 100644 --- a/ui/options.h +++ b/ui/options.h @@ -35,6 +35,7 @@ class BINARYNINJAUIAPI OptionsDialog: public QDialog public: OptionsDialog(QWidget* parent, const QString& name); virtual ~OptionsDialog(); + bool loadViews(); Q_SIGNALS: void openFile(FileContext* file); @@ -43,6 +44,5 @@ private Q_SLOTS: void cancel(); void open(); void addSettingsViewForType(const std::string& bvtName); - void queryViewTypes(); void viewTabCloseRequested(int index); }; |
