diff options
| author | Al <gabriel.cortesi@outlook.com> | 2019-01-11 13:50:51 +0100 |
|---|---|---|
| committer | Al <gabriel.cortesi@outlook.com> | 2019-01-11 13:56:58 +0100 |
| commit | cc7c3adcad973949ac976c3dc71bb8cf2677056c (patch) | |
| tree | f12166e9194e59fbf25c43c83e62fcbd318a18da /src/pluginlist.cpp | |
| parent | 2d78ac26c85bd7432e3aa80b59adc71190f04929 (diff) | |
Fix or ignore a number of compiler warnings.
Diffstat (limited to 'src/pluginlist.cpp')
| -rw-r--r-- | src/pluginlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp index 6f417331..25f9c545 100644 --- a/src/pluginlist.cpp +++ b/src/pluginlist.cpp @@ -153,7 +153,7 @@ void PluginList::highlightPlugins(const QItemSelectionModel *selection, const MO }
}
}
- emit dataChanged(this->index(0, 0), this->index(m_ESPs.size() - 1, this->columnCount() - 1));
+ emit dataChanged(this->index(0, 0), this->index(static_cast<int>(m_ESPs.size()) - 1, this->columnCount() - 1));
}
void PluginList::refresh(const QString &profileName
|
