1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Bug 323755: Rename properties file so they can match and be found.

This commit is contained in:
Marc Khouzam 2010-08-26 20:23:35 +00:00
parent 0070cb3914
commit 0560c34482
3 changed files with 5 additions and 5 deletions

View file

@ -16,15 +16,15 @@ import org.eclipse.osgi.util.NLS;
/**
* @noinstantiate This class is not intended to be instantiated by clients.
*/
public class Messages extends NLS {
public class EventMessages extends NLS {
public static String Tracepoint;
public static String Record;
static {
// initialize resource bundle
NLS.initializeMessages(Messages.class.getName(), Messages.class);
NLS.initializeMessages(EventMessages.class.getName(), EventMessages.class);
}
private Messages() {
private EventMessages() {
}
}

View file

@ -47,8 +47,8 @@ public class MITracepointSelectedEvent extends MIBreakpointHitEvent {
* Returns a text to display for the reason why we show the debug view as stopped.
*/
public String getReason() {
return Messages.Tracepoint + " " + getNumber() + //$NON-NLS-1$
", " + Messages.Record + " " + fRecNo; //$NON-NLS-1$ //$NON-NLS-2$
return EventMessages.Tracepoint + " " + getNumber() + //$NON-NLS-1$
", " + EventMessages.Record + " " + fRecNo; //$NON-NLS-1$ //$NON-NLS-2$
}
@ConfinedToDsfExecutor("")