浏览代码

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.
Lioncash 7 年之前
父节点
当前提交
e4fa77ef6a
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      src/yuzu/applets/web_browser.h

+ 1 - 2
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;
 };