From e8ef656842b5853d99aeee1e515bb23c322fde5f Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Mon, 18 Nov 2019 12:32:40 -0800 Subject: [PATCH] Qt: Remove an unneeded connection. Fixes Change-Id: I259e5bea0d0475d1bbb0c584b125a4ea819dda64 12:31:07.342 Main Warn QObject::connect: No such slot AboutDialog::copyToClipboardTriggered() in ../ui/qt/about_dialog.cpp:300 12:31:07.342 Main Warn QObject::connect: (sender name: 'copyToClipboard') 12:31:07.342 Main Warn QObject::connect: (receiver name: 'AboutDialog') Reviewed-on: https://code.wireshark.org/review/35129 Reviewed-by: Roland Knall --- ui/qt/about_dialog.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ui/qt/about_dialog.cpp b/ui/qt/about_dialog.cpp index d4af61e2da..86eee1acdd 100644 --- a/ui/qt/about_dialog.cpp +++ b/ui/qt/about_dialog.cpp @@ -297,7 +297,6 @@ AboutDialog::AboutDialog(QWidget *parent) : ui->pte_wireshark->setFrameStyle(QFrame::NoFrame); ui->pte_wireshark->viewport()->setAutoFillBackground(false); - connect(ui->copyToClipboard, SIGNAL(clicked()), this, SLOT(copyToClipboardTriggered())); /* Check if it is a dev release... (VERSION_MINOR is odd in dev release) */ #if VERSION_MINOR & 1