Skip to content
Snippets Groups Projects
Commit cfec047b authored by Denis Sumin's avatar Denis Sumin
Browse files

...

parent 5009a6d3
No related merge requests found
...@@ -103,7 +103,7 @@ void WinDiagnostic::refresh_win_snapshot() ...@@ -103,7 +103,7 @@ void WinDiagnostic::refresh_win_snapshot()
} }
} }
QJsonObject WinDiagnostic::get_process_info(int totalRam) QJsonObject WinDiagnostic::get_process_info(long proc_id, int totalRam)
{ {
refresh_win_snapshot(); refresh_win_snapshot();
......
...@@ -14,8 +14,8 @@ public: ...@@ -14,8 +14,8 @@ public:
explicit WinDiagnostic(AbstractDiagnostic* parent = nullptr); explicit WinDiagnostic(AbstractDiagnostic* parent = nullptr);
private: private:
QJsonObject get_sys_info(); QJsonObject get_sys_info() override;
QJsonObject get_process_info(int totalRam); QJsonObject get_process_info(long pid, int totalRam) override;
long get_memory_size(HANDLE hProc); long get_memory_size(HANDLE hProc);
ULONGLONG ft2ull(FILETIME &ft); ULONGLONG ft2ull(FILETIME &ft);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment