mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Get rid of C-style empty function parameter indicators
This commit is contained in:
@ -30,9 +30,9 @@ public:
|
||||
memset(m_CachedRegHasChanged, 0, sizeof(m_CachedRegHasChanged));
|
||||
}
|
||||
|
||||
int GetNumberCols(void) override {return 2;}
|
||||
int GetNumberRows(void) override {return 32;}
|
||||
bool IsEmptyCell(int row, int col) override {return false;}
|
||||
int GetNumberCols() override { return 2; }
|
||||
int GetNumberRows() override { return 32; }
|
||||
bool IsEmptyCell(int row, int col) override { return false; }
|
||||
wxString GetValue(int row, int col) override;
|
||||
void SetValue(int row, int col, const wxString &) override;
|
||||
wxGridCellAttr *GetAttr(int, int, wxGridCellAttr::wxAttrKind) override;
|
||||
|
Reference in New Issue
Block a user