diff options
| author | Peter LaFosse <peter@vector35.com> | 2019-07-05 11:29:28 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2019-07-14 14:42:52 -0400 |
| commit | a096663fc17d08af0bf2581150b618a1a8f09767 (patch) | |
| tree | a865bc30f99da2612ed4aa61d46e0c483fb35b19 /ui/dockhandler.h | |
| parent | c061061966ee12a7d6ace672b7798257eeb22cfd (diff) | |
Add support for sorting the symbol list by name or address
Refactoring Function List to support Symbols and Data Variables too
Renaming FunctionList and FunctionsView to SymbolList/SymbolsView
Keep track of current selection and scroll position between model resets
Diffstat (limited to 'ui/dockhandler.h')
| -rw-r--r-- | ui/dockhandler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/dockhandler.h b/ui/dockhandler.h index e0b62c27..ab6596c7 100644 --- a/ui/dockhandler.h +++ b/ui/dockhandler.h @@ -62,8 +62,8 @@ public: DockContextHandler(QWidget* widget, const QString& name); virtual ~DockContextHandler(); - QString getName() { return m_name; } - QWidget* getParentWindow() { return m_parentWindow; } + QString getName() const { return m_name; } + QWidget* getParentWindow() const { return m_parentWindow; } virtual void notifyFontChanged() { } virtual void notifyOffsetChanged(uint64_t /*offset*/) { } |
