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.
This commit is contained in:
parent
07c921ce93
commit
a44dae2514
1 changed files with 1 additions and 2 deletions
|
@ -43,11 +43,10 @@ public:
|
||||||
signals:
|
signals:
|
||||||
void MainWindowOpenPage(std::string_view filename, std::string_view additional_args) const;
|
void MainWindowOpenPage(std::string_view filename, std::string_view additional_args) const;
|
||||||
|
|
||||||
public slots:
|
private:
|
||||||
void MainWindowUnpackRomFS();
|
void MainWindowUnpackRomFS();
|
||||||
void MainWindowFinishedBrowsing();
|
void MainWindowFinishedBrowsing();
|
||||||
|
|
||||||
private:
|
|
||||||
mutable std::function<void()> unpack_romfs_callback;
|
mutable std::function<void()> unpack_romfs_callback;
|
||||||
mutable std::function<void()> finished_callback;
|
mutable std::function<void()> finished_callback;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue