From 7d2fe5999673cff0910208a2cbec3f9a1c56b05b Mon Sep 17 00:00:00 2001 From: Martchus Date: Wed, 7 Jun 2023 23:18:04 +0200 Subject: [PATCH] Workaround lupdate limitation Defining a function like this apparently leads to `Qualifying with unknown namespace/class` so let's just drop the namespace. --- gui/tageditorwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/tageditorwidget.cpp b/gui/tageditorwidget.cpp index a0fa661..9eebd70 100644 --- a/gui/tageditorwidget.cpp +++ b/gui/tageditorwidget.cpp @@ -1380,7 +1380,7 @@ void TagEditorWidget::closeFile() updateFileStatusStatus(); } -void QtGui::TagEditorWidget::renameFile() +void TagEditorWidget::renameFile() { if (isFileOperationOngoing()) { emit statusMessage(tr("Unable to rename the file because the current process hasn't been finished yet."));