Skip to content
Snippets Groups Projects
Commit e4fa77ef authored by Lioncash's avatar Lioncash
Browse files

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.
parent 7c6bb8c1
No related branches found
No related tags found
No related merge requests found
......@@ -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;
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment