Fix a copy paste typo
This commit is contained in:
parent
55b50a3e2b
commit
989b9a520d
1 changed files with 1 additions and 1 deletions
|
@ -578,7 +578,7 @@ static QString sourceString(const AbstractDataSource *const source)
|
||||||
if (auto dataSource = qobject_cast<const DataSourceInterface *const>(source)) {
|
if (auto dataSource = qobject_cast<const DataSourceInterface *const>(source)) {
|
||||||
return QStringLiteral("wl_data_source@%1 of %2").arg(wl_resource_get_id(dataSource->resource())).arg(executable);
|
return QStringLiteral("wl_data_source@%1 of %2").arg(wl_resource_get_id(dataSource->resource())).arg(executable);
|
||||||
} else if (qobject_cast<const PrimarySelectionSourceV1Interface *const>(source)) {
|
} else if (qobject_cast<const PrimarySelectionSourceV1Interface *const>(source)) {
|
||||||
return QStringLiteral("zwp_primary_selection_source_v1 of %2").arg(executable);
|
return QStringLiteral("zwp_primary_selection_source_v1 of %1").arg(executable);
|
||||||
} else if (qobject_cast<const DataControlSourceV1Interface *const>(source)) {
|
} else if (qobject_cast<const DataControlSourceV1Interface *const>(source)) {
|
||||||
return QStringLiteral("data control by %1").arg(executable);
|
return QStringLiteral("data control by %1").arg(executable);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue