aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-07-31 12:21:28 -0700
committerGerald Combs <gerald@wireshark.org>2015-07-31 19:23:01 +0000
commit5336c9aabca11331dfc93c2c1731f37456a1b6f5 (patch)
treedfedf86c385a353b475123a9fbfc780593c3762e /ui
parent787fa27cd42a961d4705bf7b4383705e1986e9e0 (diff)
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>
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/filter_action.cpp8
-rw-r--r--ui/qt/packet_list.cpp4
2 files changed, 6 insertions, 6 deletions
diff --git a/ui/qt/filter_action.cpp b/ui/qt/filter_action.cpp
index 2c00a5ab7f..f24318b6b9 100644
--- a/ui/qt/filter_action.cpp
+++ b/ui/qt/filter_action.cpp
@@ -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");
diff --git a/ui/qt/packet_list.cpp b/ui/qt/packet_list.cpp
index 2edcb4543e..7172709468 100644
--- a/ui/qt/packet_list.cpp
+++ b/ui/qt/packet_list.cpp
@@ -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();