Skip to content
Snippets Groups Projects
Commit a48aa4f9 authored by Yuri Kunde Schlesner's avatar Yuri Kunde Schlesner
Browse files

Resolve issue accidentally left unaddressed in PR #930

parent baba0efc
No related branches found
No related tags found
No related merge requests found
......@@ -345,7 +345,7 @@ void GPUCommandListWidget::CopyAllToClipboard() {
QClipboard* clipboard = QApplication::clipboard();
QString text;
QAbstractItemModel* model = (QAbstractListModel*)list_widget->model();
QAbstractItemModel* model = static_cast<QAbstractListModel*>(list_widget->model());
for (int row = 0; row < model->rowCount({}); ++row) {
for (int col = 0; col < model->columnCount({}); ++col) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment