Przeglądaj źródła

game_list: Replace 0 literals with nullptr

Lioncash 9 lat temu
rodzic
commit
aa05d36823
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/citra_qt/game_list.cpp

+ 1 - 1
src/citra_qt/game_list.cpp

@@ -151,6 +151,6 @@ void GameListWorker::run() {
 }
 
 void GameListWorker::Cancel() {
-    disconnect(this, 0, 0, 0);
+    disconnect(this, nullptr, nullptr, nullptr);
     stop_processing = true;
 }