Bläddra i källkod

citra-qt: remove dead code

wwylele 9 år sedan
förälder
incheckning
560884336f
3 ändrade filer med 0 tillägg och 5 borttagningar
  1. 0 2
      src/citra_qt/bootmanager.cpp
  2. 0 2
      src/citra_qt/bootmanager.h
  3. 0 1
      src/citra_qt/main.cpp

+ 0 - 2
src/citra_qt/bootmanager.cpp

@@ -240,8 +240,6 @@ void GRenderWindow::focusOutEvent(QFocusEvent* event) {
     InputCommon::GetKeyboard()->ReleaseAllKeys();
     InputCommon::GetKeyboard()->ReleaseAllKeys();
 }
 }
 
 
-void GRenderWindow::ReloadSetKeymaps() {}
-
 void GRenderWindow::OnClientAreaResized(unsigned width, unsigned height) {
 void GRenderWindow::OnClientAreaResized(unsigned width, unsigned height) {
     NotifyClientAreaSizeChanged(std::make_pair(width, height));
     NotifyClientAreaSizeChanged(std::make_pair(width, height));
 }
 }

+ 0 - 2
src/citra_qt/bootmanager.h

@@ -130,8 +130,6 @@ public:
 
 
     void focusOutEvent(QFocusEvent* event) override;
     void focusOutEvent(QFocusEvent* event) override;
 
 
-    void ReloadSetKeymaps();
-
     void OnClientAreaResized(unsigned width, unsigned height);
     void OnClientAreaResized(unsigned width, unsigned height);
 
 
     void InitRenderTarget();
     void InitRenderTarget();

+ 0 - 1
src/citra_qt/main.cpp

@@ -612,7 +612,6 @@ void GMainWindow::OnConfigure() {
     auto result = configureDialog.exec();
     auto result = configureDialog.exec();
     if (result == QDialog::Accepted) {
     if (result == QDialog::Accepted) {
         configureDialog.applyConfiguration();
         configureDialog.applyConfiguration();
-        render_window->ReloadSetKeymaps();
         config->Save();
         config->Save();
     }
     }
 }
 }