CodeWidget/CodeViewWidget: Make symbol pointers const where applicable

These aren't used to modify the data they point to, so make that
explicit. Also while we're at it, add const to any nearby variables that
can be made so.
This commit is contained in:
Lioncash
2018-05-26 23:37:10 -04:00
parent f568e41fac
commit 880f7871d9
3 changed files with 16 additions and 16 deletions

View File

@ -45,8 +45,8 @@ private:
void CreateWidgets();
void ConnectWidgets();
void UpdateCallstack();
void UpdateFunctionCalls(Symbol* symbol);
void UpdateFunctionCallers(Symbol* symbol);
void UpdateFunctionCalls(const Symbol* symbol);
void UpdateFunctionCallers(const Symbol* symbol);
void OnSearchAddress();
void OnSearchSymbols();