Remove unused signal

Change-Id: Ic2d4057ee95849bc1b026663dae1430432ad9707
Reviewed-on: https://code.wireshark.org/review/10241
Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
This commit is contained in:
Stig Bjørlykke 2015-08-24 22:59:21 +02:00
parent 99dab8214a
commit 18747939fd
2 changed files with 0 additions and 16 deletions

View File

@ -120,18 +120,6 @@ PacketDialog::~PacketDialog()
g_free(packet_data_);
}
void PacketDialog::accept()
{
emit packetDialogClosed(this);
WiresharkDialog::accept();
}
void PacketDialog::reject()
{
emit packetDialogClosed(this);
WiresharkDialog::reject();
}
void PacketDialog::captureFileClosing()
{
delete byte_view_tab_;

View File

@ -44,7 +44,6 @@ public:
signals:
void monospaceFontChanged(QFont);
void packetDialogClosed(QDialog *);
private slots:
void captureFileClosing();
@ -53,9 +52,6 @@ private slots:
void on_buttonBox_helpRequested();
private:
void accept();
void reject();
Ui::PacketDialog *ui;
QString col_info_;