aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-01-17 11:08:02 -0500
committerLioncash <mathew1800@gmail.com>2019-01-17 11:08:05 -0500
commite4fa77ef6ac42d36c880db1658dfdd67dcf5d025 (patch)
tree6d9042510f5c311b59734c4ce2d1355dc0e5a40e /src
parent7c6bb8c17f007595f149089fa8033c1b540a283f (diff)
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.
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/applets/web_browser.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/applets/web_browser.h b/src/yuzu/applets/web_browser.h
index bba273767f..9838865863 100644
--- a/src/yuzu/applets/web_browser.h
+++ b/src/yuzu/applets/web_browser.h
@@ -43,11 +43,10 @@ public:
signals:
void MainWindowOpenPage(std::string_view filename, std::string_view additional_args) const;
-public slots:
+private:
void MainWindowUnpackRomFS();
void MainWindowFinishedBrowsing();
-private:
mutable std::function<void()> unpack_romfs_callback;
mutable std::function<void()> finished_callback;
};