diff options
author | Lioncash <mathew1800@gmail.com> | 2016-12-11 03:22:05 +0100 |
---|---|---|
committer | linkmauve <linkmauve@linkmauve.fr> | 2016-12-11 12:45:50 +0100 |
commit | aa05d368233892ab0256d6e9d0af959e15315e41 (patch) | |
tree | 8544e24cb225dc06d5beae14e4340b9b8964dc12 /src | |
parent | game_list: Use QT5's new event connection syntax (diff) | |
download | yuzu-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')
-rw-r--r-- | src/citra_qt/game_list.cpp | 2 |
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; } |