diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-05-10 08:02:09 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-05-10 13:08:37 -0400 |
| commit | 5731e612900bed0d542421e00e64324dbac9367e (patch) | |
| tree | 1cc3b242faaa131cb4c306300ef0731736c8a150 | |
| parent | 028f3c9fa77caa896b14b42a1360476525478468 (diff) | |
Add support for navigating to symbols which have duplicate names
| -rw-r--r-- | ui/addressdialog.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/addressdialog.h b/ui/addressdialog.h index 1f67664d..557030ba 100644 --- a/ui/addressdialog.h +++ b/ui/addressdialog.h @@ -34,6 +34,8 @@ class BINARYNINJAUIAPI AddressDialogWithPreview: public QDialog QFont m_defaultFont; QString m_prompt; bool m_initialTextSelection; + std::string m_errorString; + bool m_resultAmbiguous; void commitHistory(); void customEvent(QEvent* event); @@ -43,6 +45,7 @@ private Q_SLOTS: void accepted(); void updateRelativeState(int state); void updatePreview(); + void updatePreviewText(); void updatePreviewWithText(QString data); public: @@ -69,6 +72,8 @@ class BINARYNINJAUIAPI FileOffsetDialogWithPreview: public QDialog QFont m_defaultFont; QString m_prompt; bool m_initialTextSelection; + std::string m_errorString; + bool m_resultAmbiguous; void commitHistory(); @@ -76,6 +81,7 @@ private Q_SLOTS: void updateTimerEvent(); void accepted(); void updatePreview(); + void updatePreviewText(); void updatePreview(QString data); public: |
