control: Change the string label for specific event in the Control view
authorBruno Roy <bruno.roy@ericsson.com>
Wed, 29 Jun 2016 15:26:42 +0000 (11:26 -0400)
committerMatthew Khouzam <matthew.khouzam@ericsson.com>
Fri, 1 Jul 2016 00:43:20 +0000 (20:43 -0400)
The label for enabling specific event by name is now "Event Name"
instead of "Event Type". This is to be more consistent with the other
fields of the dialog window.

Change-Id: Id4237d53f76b43bc146107cd9a6eee301ddde0df
Signed-off-by: Bruno Roy <bruno.roy@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/76224
Reviewed-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Tested-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Reviewed-by: Hudson CI
Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
lttng/org.eclipse.tracecompass.lttng2.control.ui/src/org/eclipse/tracecompass/internal/lttng2/control/ui/views/dialogs/EnableKernelEventComposite.java
lttng/org.eclipse.tracecompass.lttng2.control.ui/src/org/eclipse/tracecompass/internal/lttng2/control/ui/views/messages/Messages.java
lttng/org.eclipse.tracecompass.lttng2.control.ui/src/org/eclipse/tracecompass/internal/lttng2/control/ui/views/messages/messages.properties

index 3bd14717a4d3bab621c8a04e232ba2b47b3b5a0b..4f5a73b5947c435ba508a59be787a69c6faa9da1 100644 (file)
@@ -469,7 +469,7 @@ public class EnableKernelEventComposite extends Composite implements IEnableKern
         specificEventGroup.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
 
         Label specificEventLabel = new Label(specificEventGroup, SWT.LEFT);
-        specificEventLabel.setText(Messages.TraceControl_EnableEventsSpecificEventLabel);
+        specificEventLabel.setText(Messages.TraceControl_EnableEventsEventNameLabel);
         data = new GridData(GridData.FILL_HORIZONTAL);
         data.horizontalSpan = 1;
         specificEventLabel.setLayoutData(data);
index c47354eee23418c557897b399553a5bba42fee3b..204c6373709d08f1727d883d480b48e28207a3f0 100644 (file)
@@ -204,7 +204,6 @@ public final class Messages extends NLS {
     public static String TraceControl_EnableEventsAllEventsLabel;
     public static String TraceControl_EnableEventsAllEventsTooltip;
     public static String TraceControl_EnableEventsSpecificEventGroupName;
-    public static String TraceControl_EnableEventsSpecificEventLabel;
     public static String TraceControl_EnableEventsSpecificEventTooltip;
     public static String TraceControl_EnableEventsExcludedEventGroupName;
     public static String TraceControl_EnableEventsExcludedEventLabel;
index 829d2ba0dd5d4add9e191735d9ef091588e6e465..37143e48c0a3708c08d111c26d33713e64dbff25 100644 (file)
@@ -192,7 +192,6 @@ TraceControl_EnableGroupSelectionName=Select
 TraceControl_EnableEventsAllEventsLabel=All Tracepoint Events and Syscalls
 TraceControl_EnableEventsAllEventsTooltip=Enable all tracepoint events and all Syscalls
 TraceControl_EnableEventsSpecificEventGroupName=Specific event
-TraceControl_EnableEventsSpecificEventLabel=Event type
 TraceControl_EnableEventsSpecificEventTooltip=Enable event by specifying the name
 TraceControl_EnableEventsExcludedEventGroupName=Exclude Events
 TraceControl_EnableEventsExcludedEventLabel=Event Names
This page took 0.046195 seconds and 5 git commands to generate.