From 52d38a18fdfc8f2b0903721e007b8f62d53e5759 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig=20Bj=C3=B8rlykke?= Date: Wed, 28 Dec 2016 11:11:36 +0100 Subject: [PATCH] Qt: Remove "Extcap" from window title. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit An average user does not need to know that an interface is of type extcap. Remove "Extcap" from the "Extcap Interface Options" dialog. Change-Id: Iafadf2d312a4ffd5530deeac63194151571fc7d3 Reviewed-on: https://code.wireshark.org/review/19443 Petri-Dish: Stig Bjørlykke Reviewed-by: Roland Knall Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke --- ui/qt/extcap_options_dialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/qt/extcap_options_dialog.cpp b/ui/qt/extcap_options_dialog.cpp index 2a47a6527c..43a82bfc59 100644 --- a/ui/qt/extcap_options_dialog.cpp +++ b/ui/qt/extcap_options_dialog.cpp @@ -73,7 +73,7 @@ ExtcapOptionsDialog::ExtcapOptionsDialog(QWidget *parent) : { ui->setupUi(this); - setWindowTitle(wsApp->windowTitleString(tr("Extcap Interface Options"))); + setWindowTitle(wsApp->windowTitleString(tr("Interface Options"))); ui->checkSaveOnStart->setCheckState(prefs.extcap_save_on_start ? Qt::Checked : Qt::Unchecked); @@ -107,7 +107,7 @@ ExtcapOptionsDialog * ExtcapOptionsDialog::createForDevice(QString &dev_name, QW resultDialog->device_name = QString(dev_name); resultDialog->device_idx = if_idx; - resultDialog->setWindowTitle(wsApp->windowTitleString(tr("Extcap Interface Options") + ": " + device.display_name)); + resultDialog->setWindowTitle(wsApp->windowTitleString(tr("Interface Options") + ": " + device.display_name)); resultDialog->updateWidgets();