diff options
| author | 2017-05-03 00:23:20 +0200 | |
|---|---|---|
| committer | 2017-05-03 00:23:20 +0200 | |
| commit | 89c28f9f80e17d7b5539721871e4ec33c2cc67c7 (patch) | |
| tree | 81e0605d7900a738c206f7b88fbff3be36aa2334 /src | |
| parent | citra-qt: game list search function fixed minor mistakes (diff) | |
| download | yuzu-89c28f9f80e17d7b5539721871e4ec33c2cc67c7.tar.gz yuzu-89c28f9f80e17d7b5539721871e4ec33c2cc67c7.tar.xz yuzu-89c28f9f80e17d7b5539721871e4ec33c2cc67c7.zip | |
Fixed some more typos
Diffstat (limited to 'src')
| -rw-r--r-- | src/citra_qt/game_list.cpp | 4 | ||||
| -rw-r--r-- | src/citra_qt/game_list.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/citra_qt/game_list.cpp b/src/citra_qt/game_list.cpp index f56c247c7..582aa0857 100644 --- a/src/citra_qt/game_list.cpp +++ b/src/citra_qt/game_list.cpp | |||
| @@ -239,8 +239,8 @@ void GameList::setFilterFocus() { | |||
| 239 | search_field->setFocus(); | 239 | search_field->setFocus(); |
| 240 | } | 240 | } |
| 241 | 241 | ||
| 242 | void GameList::setFilterVisible(bool visablility) { | 242 | void GameList::setFilterVisible(bool visibility) { |
| 243 | search_field->setVisible(visablility); | 243 | search_field->setVisible(visibility); |
| 244 | } | 244 | } |
| 245 | 245 | ||
| 246 | void GameList::clearFilter() { | 246 | void GameList::clearFilter() { |
diff --git a/src/citra_qt/game_list.h b/src/citra_qt/game_list.h index 3c06cddc8..d8f8bc5b6 100644 --- a/src/citra_qt/game_list.h +++ b/src/citra_qt/game_list.h | |||
| @@ -34,7 +34,7 @@ public: | |||
| 34 | 34 | ||
| 35 | class SearchField : public QWidget { | 35 | class SearchField : public QWidget { |
| 36 | public: | 36 | public: |
| 37 | void setFilterResult(int visable, int total); | 37 | void setFilterResult(int visible, int total); |
| 38 | void clear(); | 38 | void clear(); |
| 39 | void setFocus(); | 39 | void setFocus(); |
| 40 | explicit SearchField(GameList* parent = nullptr); | 40 | explicit SearchField(GameList* parent = nullptr); |
| @@ -64,7 +64,7 @@ public: | |||
| 64 | 64 | ||
| 65 | void clearFilter(); | 65 | void clearFilter(); |
| 66 | void setFilterFocus(); | 66 | void setFilterFocus(); |
| 67 | void setFilterVisible(bool visablility); | 67 | void setFilterVisible(bool visibility); |
| 68 | 68 | ||
| 69 | void PopulateAsync(const QString& dir_path, bool deep_scan); | 69 | void PopulateAsync(const QString& dir_path, bool deep_scan); |
| 70 | 70 | ||