From a096663fc17d08af0bf2581150b618a1a8f09767 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 5 Jul 2019 11:29:28 -0400 Subject: 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 --- ui/dockhandler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/dockhandler.h') 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*/) { } -- cgit v1.3.1