cosmetics - synchronize with the rest of strings

This commit is contained in:
Pavel Sanda 2024-07-02 23:47:42 +02:00
parent 78a26c7954
commit 6aef9e394e
2 changed files with 3 additions and 3 deletions

View File

@ -1982,7 +1982,7 @@ bool TabWorkArea::closeTabsToRight()
} }
bool TabWorkArea::openEnclosingFolder() bool TabWorkArea::openEnclosingDirectory()
{ {
if (clicked_tab_ == -1) if (clicked_tab_ == -1)
@ -2343,7 +2343,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

@ -253,7 +253,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);
/// ///