From f1a5aaa183e4e917a6d1b19fa328fca0a38df479 Mon Sep 17 00:00:00 2001 From: ambar chakravartty Date: Sun, 2 Feb 2025 10:36:06 +0530 Subject: changed all calls to "title(), setTitle()" to "customLabel(), setCustomLabel()" --- src/dolphintabwidget.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/dolphintabwidget.cpp') diff --git a/src/dolphintabwidget.cpp b/src/dolphintabwidget.cpp index c2fae5170..be674994d 100644 --- a/src/dolphintabwidget.cpp +++ b/src/dolphintabwidget.cpp @@ -124,8 +124,8 @@ void DolphinTabWidget::updateTabName(int index) { Q_ASSERT(index >= 0); - if (!tabPageAt(index)->title().isEmpty()) { - QString name = tabPageAt(index)->title(); + if (!tabPageAt(index)->customLabel().isEmpty()) { + QString name = tabPageAt(index)->customLabel(); tabBar()->setTabText(index, name); return; } @@ -483,7 +483,7 @@ void DolphinTabWidget::currentTabChanged(int index) void DolphinTabWidget::renameTab(int index, const QString &name) { if (!name.isEmpty()) { - tabPageAt(index)->setTitle(name); + tabPageAt(index)->setCustomLabel(name); } updateTabName(index); -- cgit v1.3