1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-08 01:25:23 +02:00

Changed the message displayed when the source file is not found.

This commit is contained in:
Mikhail Khodjaiants 2003-12-04 19:40:42 +00:00
parent 8e30551fb7
commit a042dbd4dd
2 changed files with 5 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2003-12-04 Mikhail Khodjaiants
Changed the message displayed when the source file is not found.
* CDebugEditor.java
2003-11-26 Mikhail Khodjaiants
Fix for PR 47595: Referenced projects are not checked in the list of generic source locations.
* SourceLookupBlock.java

View file

@ -291,9 +291,7 @@ public class CDebugEditor extends CEditor
IPath path = element.getFullPath();
String message = "";
if ( path.isAbsolute() )
message = MessageFormat.format( "The file ''{0}'' does not exist.", new String[] { element.getFullPath().toOSString() } );
else
message = MessageFormat.format( "The file ''{0}'' not found.", new String[] { element.getFullPath().toOSString() } );
message = MessageFormat.format( "Can not find the file ''{0}'' in the specified source locations.", new String[] { element.getFullPath().toOSString() } );
fInputLabel.setText( message );
}
}