diff options
| author | 2016-12-10 21:22:05 -0500 | |
|---|---|---|
| committer | 2016-12-11 11:45:50 +0000 | |
| commit | aa05d368233892ab0256d6e9d0af959e15315e41 (patch) | |
| tree | 8544e24cb225dc06d5beae14e4340b9b8964dc12 | |
| parent | game_list: Use QT5's new event connection syntax (diff) | |
| download | yuzu-aa05d368233892ab0256d6e9d0af959e15315e41.tar.gz yuzu-aa05d368233892ab0256d6e9d0af959e15315e41.tar.xz yuzu-aa05d368233892ab0256d6e9d0af959e15315e41.zip | |
game_list: Replace 0 literals with nullptr
| -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() { | |||
| 151 | } | 151 | } |
| 152 | 152 | ||
| 153 | void GameListWorker::Cancel() { | 153 | void GameListWorker::Cancel() { |
| 154 | disconnect(this, 0, 0, 0); | 154 | disconnect(this, nullptr, nullptr, nullptr); |
| 155 | stop_processing = true; | 155 | stop_processing = true; |
| 156 | } | 156 | } |