Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 132029 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/update/internal/ui/wizards/TargetPage.java (-1 / +2 lines)
Lines 283-289 Link Here
283
		else
283
		else
284
			availableSpaceLabel.setText(
284
			availableSpaceLabel.setText(
285
				NLS.bind(UpdateUIMessages.InstallWizard_TargetPage_size, "" + available)); //$NON-NLS-1$
285
				NLS.bind(UpdateUIMessages.InstallWizard_TargetPage_size, "" + available)); //$NON-NLS-1$
286
		if(required > available){
286
		//if the available space was retireved from the OS and the required space is greater that the available space, do not let the user continue
287
		if(available != LocalSystemInfo.SIZE_UNKNOWN && required > available){
287
			this.setPageComplete(false);
288
			this.setPageComplete(false);
288
			//TODO: set error message: "...not enough space..."
289
			//TODO: set error message: "...not enough space..."
289
		}else
290
		}else

Return to bug 132029