More spacing fixups.

Make spacing more consistent.

Change-Id: I8980a84ca70660057016985299b0f95761076893
Reviewed-on: https://code.wireshark.org/review/9835
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Gerald Combs 2015-07-31 12:21:28 -07:00
parent 787fa27cd4
commit 5336c9aabc
2 changed files with 6 additions and 6 deletions

View File

@ -125,16 +125,16 @@ const QString FilterAction::actionTypeName(ActionType type) {
return QObject::tr("Not Selected");
break;
case ActionTypeAnd:
return QObject::tr(UTF8_HORIZONTAL_ELLIPSIS " and Selected");
return QObject::tr(UTF8_HORIZONTAL_ELLIPSIS "and Selected");
break;
case ActionTypeOr:
return QObject::tr(UTF8_HORIZONTAL_ELLIPSIS " or Selected");
return QObject::tr(UTF8_HORIZONTAL_ELLIPSIS "or Selected");
break;
case ActionTypeAndNot:
return QObject::tr(UTF8_HORIZONTAL_ELLIPSIS " and not Selected");
return QObject::tr(UTF8_HORIZONTAL_ELLIPSIS "and not Selected");
break;
case ActionTypeOrNot:
return QObject::tr(UTF8_HORIZONTAL_ELLIPSIS " or not Selected");
return QObject::tr(UTF8_HORIZONTAL_ELLIPSIS "or not Selected");
break;
default:
return QObject::tr("UNKNOWN");

View File

@ -334,10 +334,10 @@ PacketList::PacketList(QWidget *parent) :
action = submenu->addAction(tr("Summary as Text"));
action->setData(copy_summary_text_);
connect(action, SIGNAL(triggered()), this, SLOT(copySummary()));
action = submenu->addAction(tr(UTF8_HORIZONTAL_ELLIPSIS " as CSV"));
action = submenu->addAction(tr(UTF8_HORIZONTAL_ELLIPSIS "as CSV"));
action->setData(copy_summary_csv_);
connect(action, SIGNAL(triggered()), this, SLOT(copySummary()));
action = submenu->addAction(tr(UTF8_HORIZONTAL_ELLIPSIS " as YAML"));
action = submenu->addAction(tr(UTF8_HORIZONTAL_ELLIPSIS "as YAML"));
action->setData(copy_summary_yaml_);
connect(action, SIGNAL(triggered()), this, SLOT(copySummary()));
submenu->addSeparator();