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 126705 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/jface/preference/FileFieldEditor.java (-3 / +9 lines)
Lines 142-150 Link Here
142
            return false;
142
            return false;
143
        }
143
        }
144
144
145
        // OK!
145
        if(doCheckState()) { // OK!
146
        clearErrorMessage();
146
	        clearErrorMessage();
147
        return true;
147
	        return true;
148
        }
149
        msg = getErrorMessage(); // subclass might have changed it in the #doCheckState()
150
        if (msg != null) {
151
            showErrorMessage(msg);
152
        }
153
    	return false;
148
    }
154
    }
149
155
150
    /**
156
    /**

Return to bug 126705