[plasma/kwin] src: debug_console: cleanup stray semicolon
Li Kai <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 89f4efdb323e8fe6f9ce6baecce5a3740febd157 by Li Kai.
Committed on 31/07/2026 at 07:33.
Pushed by davidedmundson into branch 'master'.
debug_console: cleanup stray semicolon
M +1 -1 src/debug_console.cpp
https://invent.kde.org/plasma/kwin/-/commit/89f4efdb323e8fe6f9ce6baecce5a3740febd157
diff --git a/src/debug_console.cpp b/src/debug_console.cpp
index c1041c1c575..5543dfb41b9 100644
--- a/src/debug_console.cpp
+++ b/src/debug_console.cpp
@@ -1707,7 +1707,7 @@ QVariant DataSourceModel::data(const QModelIndex &index, int role) const
return QVariant();
}
const QString mimeType = m_source->mimeTypes().at(index.row());
- ;
+
if (index.column() == 0 && role == Qt::DisplayRole) {
return mimeType;
} else if (index.column() == 1 && index.row() < m_data.count()) {