diff options
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) { |