0
0
mirror of https://github.com/yse/easy_profiler.git synced 2025-01-14 00:27:55 +08:00

(ProfGraphicsView) Fixed Windows compile errors

This commit is contained in:
Victor Zarubkin 2016-08-09 01:24:49 +03:00
parent c28b720c71
commit 66709981a8
2 changed files with 2 additions and 2 deletions

View File

@ -1883,7 +1883,7 @@ ProfThreadViewWidget::~ProfThreadViewWidget()
}
void ProfThreadViewWidget::onSelectedThreadChange()
void ProfThreadViewWidget::onSelectedThreadChange(::profiler::thread_id_t _id)
{
/*
auto threadName = ::profiler_gui::EASY_GLOBALS.profiler_blocks[::profiler_gui::EASY_GLOBALS.selected_thread].thread_name;

View File

@ -362,7 +362,7 @@ public:
ProfThreadViewWidget(QWidget *parent, ProfGraphicsView* view);
virtual ~ProfThreadViewWidget();
public slots:
void onSelectedThreadChange();
void onSelectedThreadChange(::profiler::thread_id_t _id);
};