From 4d974da2902a75188c6ae99de1887fa2822d1c8a Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 15 Aug 2022 21:21:50 +0200 Subject: [PATCH] Add shorten name accessor. --- server/TracyView.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/server/TracyView.hpp b/server/TracyView.hpp index 459cc5b4..67f21c70 100644 --- a/server/TracyView.hpp +++ b/server/TracyView.hpp @@ -119,6 +119,7 @@ public: void ShowSampleParents( uint64_t symAddr, bool withInlines ) { m_sampleParents.symAddr = symAddr; m_sampleParents.sel = 0; m_sampleParents.withInlines = withInlines; } const ViewData& GetViewData() const { return m_vd; } + ShortenName GetShortenName() const { return m_shortenName; } bool m_showRanges = false; Range m_statRange;