┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels/places/placespanel.cpp
diff options
context:
space:
mode:
authorFushan Wen <[email protected]>2021-12-28 00:51:10 +0800
committerFushan Wen <[email protected]>2021-12-28 22:48:28 +0800
commiteb0a7da653493db272ee6039d5202c5702acffc3 (patch)
treec0d630e5123d546d6c244a362b6eb53c141435ff /src/panels/places/placespanel.cpp
parentc071150b7d30c8826496f130b792aed47d4f8326 (diff)
kitemlistview: Port KItemListView::itemAt to std::optional
Use `value_or(-1)` for those functions that don't use `std::optional`.
Diffstat (limited to 'src/panels/places/placespanel.cpp')
-rw-r--r--src/panels/places/placespanel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/panels/places/placespanel.cpp b/src/panels/places/placespanel.cpp
index b9fc4a897..4d95c08eb 100644
--- a/src/panels/places/placespanel.cpp
+++ b/src/panels/places/placespanel.cpp
@@ -221,7 +221,7 @@ void PlacesPanel::slotItemContextMenuRequested(int index, const QPointF& pos)
if (!isDevice) {
menu.addSeparator();
}
-
+
if (isDevice) {
ejectAction = m_model->ejectAction(index);
if (ejectAction) {
@@ -511,7 +511,7 @@ void PlacesPanel::slotStorageSetupDone(int index, bool success)
void PlacesPanel::slotShowTooltip()
{
- const QUrl url = m_model->data(m_hoveredIndex).value("url").value<QUrl>();
+ const QUrl url = m_model->data(m_hoveredIndex.value_or(-1)).value("url").value<QUrl>();
const QString text = url.toDisplayString(QUrl::PreferLocalFile);
QToolTip::showText(m_hoverPos, text);
}