mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-08 09:35:23 +02:00
Changed the message displayed when the source file is not found.
This commit is contained in:
parent
8e30551fb7
commit
a042dbd4dd
2 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue