cosmetics - synchronize with the rest of strings

This commit is contained in:
Pavel Sanda 2024-07-02 23:47:42 +02:00
parent 4ed8bfb974
commit 65a5c3989f
2 changed files with 3 additions and 3 deletions

View File

@ -1997,7 +1997,7 @@ bool TabWorkArea::closeTabsToRight()
} }
bool TabWorkArea::openEnclosingFolder() bool TabWorkArea::openEnclosingDirectory()
{ {
if (clicked_tab_ == -1) if (clicked_tab_ == -1)
@ -2358,7 +2358,7 @@ void TabWorkArea::showContextMenu(const QPoint & pos)
popup.addSeparator(); popup.addSeparator();
popup.addAction(qt_("Open Enclosing &Folder"), this, SLOT(openEnclosingFolder())); popup.addAction(qt_("Open Enclosing &Directory"), this, SLOT(openEnclosingDirectory()));
popup.exec(tabBar()->mapToGlobal(pos)); popup.exec(tabBar()->mapToGlobal(pos));

View File

@ -255,7 +255,7 @@ public Q_SLOTS:
/// ///
void moveToEndCurrentTab(); void moveToEndCurrentTab();
/// ///
bool openEnclosingFolder(); bool openEnclosingDirectory();
/// close the tab given by \c index /// close the tab given by \c index
void closeTab(int index); void closeTab(int index);
/// ///