diff options
| author | 2019-01-17 11:08:02 -0500 | |
|---|---|---|
| committer | 2019-01-17 11:08:05 -0500 | |
| commit | e4fa77ef6ac42d36c880db1658dfdd67dcf5d025 (patch) | |
| tree | 6d9042510f5c311b59734c4ce2d1355dc0e5a40e | |
| parent | Merge pull request #2020 from otaviopace/remove-spaces (diff) | |
| download | yuzu-e4fa77ef6ac42d36c880db1658dfdd67dcf5d025.tar.gz yuzu-e4fa77ef6ac42d36c880db1658dfdd67dcf5d025.tar.xz yuzu-e4fa77ef6ac42d36c880db1658dfdd67dcf5d025.zip | |
yuzu/web_browser: Make slot functions private
These currently aren't used by anything other than the QtWebBrowser
class itself, and can be made private.
| -rw-r--r-- | src/yuzu/applets/web_browser.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/applets/web_browser.h b/src/yuzu/applets/web_browser.h index bba273767..983886586 100644 --- a/src/yuzu/applets/web_browser.h +++ b/src/yuzu/applets/web_browser.h | |||
| @@ -43,11 +43,10 @@ public: | |||
| 43 | signals: | 43 | signals: |
| 44 | void MainWindowOpenPage(std::string_view filename, std::string_view additional_args) const; | 44 | void MainWindowOpenPage(std::string_view filename, std::string_view additional_args) const; |
| 45 | 45 | ||
| 46 | public slots: | 46 | private: |
| 47 | void MainWindowUnpackRomFS(); | 47 | void MainWindowUnpackRomFS(); |
| 48 | void MainWindowFinishedBrowsing(); | 48 | void MainWindowFinishedBrowsing(); |
| 49 | 49 | ||
| 50 | private: | ||
| 51 | mutable std::function<void()> unpack_romfs_callback; | 50 | mutable std::function<void()> unpack_romfs_callback; |
| 52 | mutable std::function<void()> finished_callback; | 51 | mutable std::function<void()> finished_callback; |
| 53 | }; | 52 | }; |