mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
SymbolDB: Namespace code under the Common namespace
Moves more common code into the Common namespace where it belongs.
This commit is contained in:
@ -15,7 +15,11 @@ class QLineEdit;
|
||||
class QSplitter;
|
||||
class QListWidget;
|
||||
class QTableWidget;
|
||||
|
||||
namespace Common
|
||||
{
|
||||
struct Symbol;
|
||||
}
|
||||
|
||||
class CodeWidget : public QDockWidget
|
||||
{
|
||||
@ -45,8 +49,8 @@ private:
|
||||
void CreateWidgets();
|
||||
void ConnectWidgets();
|
||||
void UpdateCallstack();
|
||||
void UpdateFunctionCalls(const Symbol* symbol);
|
||||
void UpdateFunctionCallers(const Symbol* symbol);
|
||||
void UpdateFunctionCalls(const Common::Symbol* symbol);
|
||||
void UpdateFunctionCallers(const Common::Symbol* symbol);
|
||||
|
||||
void OnSearchAddress();
|
||||
void OnSearchSymbols();
|
||||
|
Reference in New Issue
Block a user