diff options
| author | 2015-07-21 06:48:30 -0300 | |
|---|---|---|
| committer | 2015-07-21 06:48:30 -0300 | |
| commit | a48aa4f9243ef2bcf6d57b833e8dc89982f296b5 (patch) | |
| tree | 86be5525fa042134b6b4c92690beffc6faf9de9a /src/citra_qt/debugger/graphics_cmdlists.cpp | |
| parent | Merge pull request #959 from Subv/home (diff) | |
| download | yuzu-a48aa4f9243ef2bcf6d57b833e8dc89982f296b5.tar.gz yuzu-a48aa4f9243ef2bcf6d57b833e8dc89982f296b5.tar.xz yuzu-a48aa4f9243ef2bcf6d57b833e8dc89982f296b5.zip | |
Resolve issue accidentally left unaddressed in PR #930
Diffstat (limited to 'src/citra_qt/debugger/graphics_cmdlists.cpp')
| -rw-r--r-- | src/citra_qt/debugger/graphics_cmdlists.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/graphics_cmdlists.cpp b/src/citra_qt/debugger/graphics_cmdlists.cpp index d37e865bd..392ff570b 100644 --- a/src/citra_qt/debugger/graphics_cmdlists.cpp +++ b/src/citra_qt/debugger/graphics_cmdlists.cpp | |||
| @@ -345,7 +345,7 @@ void GPUCommandListWidget::CopyAllToClipboard() { | |||
| 345 | QClipboard* clipboard = QApplication::clipboard(); | 345 | QClipboard* clipboard = QApplication::clipboard(); |
| 346 | QString text; | 346 | QString text; |
| 347 | 347 | ||
| 348 | QAbstractItemModel* model = (QAbstractListModel*)list_widget->model(); | 348 | QAbstractItemModel* model = static_cast<QAbstractListModel*>(list_widget->model()); |
| 349 | 349 | ||
| 350 | for (int row = 0; row < model->rowCount({}); ++row) { | 350 | for (int row = 0; row < model->rowCount({}); ++row) { |
| 351 | for (int col = 0; col < model->columnCount({}); ++col) { | 351 | for (int col = 0; col < model->columnCount({}); ++col) { |