summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/game_list.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-12-11 03:22:05 +0100
committerlinkmauve <linkmauve@linkmauve.fr>2016-12-11 12:45:50 +0100
commitaa05d368233892ab0256d6e9d0af959e15315e41 (patch)
tree8544e24cb225dc06d5beae14e4340b9b8964dc12 /src/citra_qt/game_list.cpp
parentgame_list: Use QT5's new event connection syntax (diff)
downloadyuzu-aa05d368233892ab0256d6e9d0af959e15315e41.tar
yuzu-aa05d368233892ab0256d6e9d0af959e15315e41.tar.gz
yuzu-aa05d368233892ab0256d6e9d0af959e15315e41.tar.bz2
yuzu-aa05d368233892ab0256d6e9d0af959e15315e41.tar.lz
yuzu-aa05d368233892ab0256d6e9d0af959e15315e41.tar.xz
yuzu-aa05d368233892ab0256d6e9d0af959e15315e41.tar.zst
yuzu-aa05d368233892ab0256d6e9d0af959e15315e41.zip
Diffstat (limited to 'src/citra_qt/game_list.cpp')
-rw-r--r--src/citra_qt/game_list.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/game_list.cpp b/src/citra_qt/game_list.cpp
index df712c14f..ad6c3e334 100644
--- a/src/citra_qt/game_list.cpp
+++ b/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;
}