From 0df7d7f36f2f4a06643307e3b13e826ddc7a203c Mon Sep 17 00:00:00 2001 From: Jakub Melka Date: Tue, 31 Dec 2024 17:07:29 +0100 Subject: [PATCH] Remove obsolete action --- Pdf4QtEditorPlugins/EditorPlugin/editorplugin.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Pdf4QtEditorPlugins/EditorPlugin/editorplugin.cpp b/Pdf4QtEditorPlugins/EditorPlugin/editorplugin.cpp index 201c185..b85f29b 100644 --- a/Pdf4QtEditorPlugins/EditorPlugin/editorplugin.cpp +++ b/Pdf4QtEditorPlugins/EditorPlugin/editorplugin.cpp @@ -68,7 +68,6 @@ void EditorPlugin::setWidget(pdf::PDFWidget* widget) QAction* createDotAction = new QAction(QIcon(":/pdfplugins/editorplugin/create-dot.svg"), tr("Create &Dot"), this); QAction* createSvgImageAction = new QAction(QIcon(":/pdfplugins/editorplugin/create-svg-image.svg"), tr("Create &SVG Image"), this); QAction* clearAction = new QAction(QIcon(":/pdfplugins/editorplugin/clear.svg"), tr("Clear A&ll Graphics"), this); - QAction* certificatesAction = new QAction(QIcon(":/pdfplugins/editorplugin/certificates.svg"), tr("Certificates &Manager"), this); activateAction->setObjectName("editortool_activateAction"); createTextAction->setObjectName("editortool_createTextAction"); @@ -83,7 +82,6 @@ void EditorPlugin::setWidget(pdf::PDFWidget* widget) createDotAction->setObjectName("editortool_createDotAction"); createSvgImageAction->setObjectName("editortool_createSvgImageAction"); clearAction->setObjectName("editortool_clearAction"); - certificatesAction->setObjectName("editortool_certificatesAction"); activateAction->setCheckable(true); createTextAction->setCheckable(true);