diff options
author | Lioncash <mathew1800@gmail.com> | 2020-09-23 11:28:08 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-09-23 11:28:11 -0400 |
commit | f43a1da808a26d5521cb0260998fe2403a3efc07 (patch) | |
tree | f8056a334d18c94201fedcad4e469a4adea20877 /src/yuzu/game_list.h | |
parent | d264b7375cd2542ab92137f705af806a8de842fd (diff) |
game_list: Make game list function naming consistent
Makes the naming consistent with the rest of the functions that are
present.
Diffstat (limited to 'src/yuzu/game_list.h')
-rw-r--r-- | src/yuzu/game_list.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/yuzu/game_list.h b/src/yuzu/game_list.h index 63aae2111..58059a3c4 100644 --- a/src/yuzu/game_list.h +++ b/src/yuzu/game_list.h @@ -67,11 +67,11 @@ public: FileSys::ManualContentProvider* provider, GMainWindow* parent = nullptr); ~GameList() override; - QString getLastFilterResultItem() const; - void clearFilter(); - void setFilterFocus(); - void setFilterVisible(bool visibility); - bool isEmpty() const; + QString GetLastFilterResultItem() const; + void ClearFilter(); + void SetFilterFocus(); + void SetFilterVisible(bool visibility); + bool IsEmpty() const; void LoadCompatibilityList(); void PopulateAsync(QVector<UISettings::GameDir>& game_dirs); @@ -99,10 +99,10 @@ signals: void ShowList(bool show); private slots: - void onItemExpanded(const QModelIndex& item); - void onTextChanged(const QString& new_text); - void onFilterCloseClicked(); - void onUpdateThemedIcons(); + void OnItemExpanded(const QModelIndex& item); + void OnTextChanged(const QString& new_text); + void OnFilterCloseClicked(); + void OnUpdateThemedIcons(); private: void AddDirEntry(GameListDir* entry_items); |