diff options
| author | Josh Ferrell <josh@vector35.com> | 2025-02-17 14:59:57 -0500 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2025-02-17 15:07:24 -0500 |
| commit | 98b0fe0fe728c23367b26e8b9547a42b33eaf294 (patch) | |
| tree | f569d0fb5995ceed7615b2cd055109ab54c5b3f2 /ui/projectbrowser.h | |
| parent | d7b826112b6c2c5e7a76acb6c9507a571407173e (diff) | |
Add created at and created by to project browser info pane
Diffstat (limited to 'ui/projectbrowser.h')
| -rw-r--r-- | ui/projectbrowser.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/projectbrowser.h b/ui/projectbrowser.h index 7275a6ef..5e69f332 100644 --- a/ui/projectbrowser.h +++ b/ui/projectbrowser.h @@ -229,6 +229,8 @@ Q_SIGNALS: class BINARYNINJAUIAPI InfoWidget: public QWidget { + ProjectRef m_project; + std::unordered_map<std::string, ProjectFileRef> m_files; std::unordered_map<std::string, ProjectFolderRef> m_folders; @@ -250,7 +252,7 @@ class BINARYNINJAUIAPI InfoWidget: public QWidget void saveDescription(); public: - InfoWidget(QWidget* parent = nullptr); + InfoWidget(ProjectRef project, QWidget* parent = nullptr); bool ContainsFile(const std::string& id); bool ContainsFolder(const std::string& id); |
