From d76c799dd22a44621b557564ed9606e04ba40e34 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Mon, 1 Sep 2025 15:31:27 +1000 Subject: plugin: fix warnings + const stuff --- plugin/src/Caelestia/filesystemmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugin/src/Caelestia/filesystemmodel.cpp') diff --git a/plugin/src/Caelestia/filesystemmodel.cpp b/plugin/src/Caelestia/filesystemmodel.cpp index 3fb20d9..a1b35d3 100644 --- a/plugin/src/Caelestia/filesystemmodel.cpp +++ b/plugin/src/Caelestia/filesystemmodel.cpp @@ -10,7 +10,7 @@ int FileSystemModel::rowCount(const QModelIndex& parent) const { Q_UNUSED(parent); - return m_entries.size(); + return static_cast(m_entries.size()); } QVariant FileSystemModel::data(const QModelIndex& index, int role) const { -- cgit v1.2.3-freya