1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:47:44 +00:00

ProfileViewer: Fix copy-paste error :^)

Saw this copy-paste mistake in the ProfileViewer Timeline video
This commit is contained in:
gla3dr 2019-12-15 01:49:04 -06:00 committed by Andreas Kling
parent 4d6968f95d
commit 12cc518d1e

View file

@ -99,7 +99,7 @@ public:
u64 length_in_ms() const { return m_last_timestamp - m_first_timestamp; }
u64 first_timestamp() const { return m_first_timestamp; }
u64 last_timestamp() const { return m_first_timestamp; }
u64 last_timestamp() const { return m_last_timestamp; }
void set_timestamp_filter_range(u64 start, u64 end);
void clear_timestamp_filter_range();