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

better transfer message

This commit is contained in:
David McKnight 2006-05-24 20:28:10 +00:00
parent 85532fc260
commit d6b97765f8
4 changed files with 7 additions and 8 deletions

View file

@ -365,14 +365,13 @@ public class DStoreFileService extends AbstractDStoreService implements IFileSer
IHostFile created = createFile(monitor, remoteParent, remoteFile);
return created.exists();
}
/*
SubProgressMonitor subMonitor = null;
if (monitor != null)
{
monitor.subTask(file.getName());
subMonitor = new SubProgressMonitor(monitor, (int)totalBytes);
monitor.setTaskName(file.getName());
//subMonitor = new SubProgressMonitor(monitor, (int)totalBytes);
}
*/
DataElement uploadLog = findUploadLog();
// listener = new FileTransferStatusListener(remotePath, shell, monitor, getConnectorService(), ds, uploadLog);

View file

@ -32,7 +32,7 @@ public class GenericMessages extends NLS
public static String RefreshAction_locationDeletedMessage;
public static String RefreshAction_dialogTitle;
public static String DragAndDropOperation_message;
public static String TransferOperation_message;
public static String RSESubSystemOperation_message;
public static String RSESubSystemOperation_Connect_message;
public static String RSESubSystemOperation_Disconnect_message;

View file

@ -40,7 +40,7 @@ FileExtension_extensionEmptyMessage = The file extension cannot be empty
FileExtension_fileNameInvalidMessage = The file name cannot include the wild card character (*) in the current location
FilteredPreferenceDialog_PreferenceSaveFailed=Preferences save failed.
DragAndDropOperation_message = Drag and Drop Operation
TransferOperation_message = Transfer Operation
RSESubSystemOperation_message = RSE SubSystem Operation:
RSESubSystemOperation_Connect_message = Connect
RSESubSystemOperation_Disconnect_message = Disconnect

View file

@ -72,7 +72,7 @@ public class SystemDNDTransferRunnable extends UIJob
public SystemDNDTransferRunnable(Object target, ArrayList srcObjects, Viewer originatingViewer, int sourceType)
{
super(GenericMessages.DragAndDropOperation_message);
super(GenericMessages.TransferOperation_message);
_srcObjects = srcObjects;
_currentTarget = target;
_sourceType = sourceType;