1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

[238609] Substitution value missing for disconnect failed message

This commit is contained in:
David McKnight 2008-06-26 15:20:42 +00:00
parent fe2afe4154
commit e8022943e7

View file

@ -40,6 +40,7 @@
* David McKnight (IBM) - [225747] [dstore] Trying to connect to an "Offline" system throws an NPE
* David McKnight (IBM) - [233435] SubSystem.resolveFilterStrings(*) does not prompt for a connection when the subsystem is not connected
* David Dykstal (IBM) - [233876] filters lost after restart
* David McKnight (IBM) - [238609] Substitution value missing for disconnect failed message
********************************************************************************/
package org.eclipse.rse.core.subsystems;
@ -588,7 +589,7 @@ implements IAdaptable, ISubSystem, ISystemFilterPoolReferenceManagerProvider
}
else
{
String msgTxt = CommonMessages.MSG_DISCONNECT_FAILED;
String msgTxt = NLS.bind(CommonMessages.MSG_DISCONNECT_FAILED, getHostName());
SystemMessage msg = new SimpleSystemMessage(RSECorePlugin.PLUGIN_ID,
ICommonMessageIds.MSG_DISCONNECT_FAILED,
IStatus.ERROR, msgTxt);