[Pydev-cvs] org.python.pydev/src/org/python/pydev/builder/pylint PyLintPrefPage.java,1.10,1.11
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2005-02-25 12:34:45
|
Update of /cvsroot/pydev/org.python.pydev/src/org/python/pydev/builder/pylint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24839/src/org/python/pydev/builder/pylint Modified Files: PyLintPrefPage.java Log Message: Index: PyLintPrefPage.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/src/org/python/pydev/builder/pylint/PyLintPrefPage.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** PyLintPrefPage.java 23 Feb 2005 14:29:37 -0000 1.10 --- PyLintPrefPage.java 25 Feb 2005 12:34:33 -0000 1.11 *************** *** 13,17 **** import org.eclipse.jface.preference.FieldEditor; import org.eclipse.jface.preference.FieldEditorPreferencePage; - import org.eclipse.jface.preference.FileFieldEditor; import org.eclipse.jface.preference.IntegerFieldEditor; import org.eclipse.swt.widgets.Composite; --- 13,16 ---- *************** *** 92,99 **** addField(new BooleanFieldEditor(USE_PYLINT, "Use pylint?", p)); addField(new IntegerFieldEditor(MAX_PYLINT_DELTA, "Max delta to run PyLint?", p)); ! FileFieldEditor fileField = new FileFieldEditor(PYLINT_FILE_LOCATION, "Location of pylint:", true, p); ! //not used - some patches had to be applied. ! fileField.setEnabled(false, p); ! addField(fileField); addField(new BooleanFieldEditor(USE_FATAL, "Communicate FATAL?", p)); --- 91,98 ---- addField(new BooleanFieldEditor(USE_PYLINT, "Use pylint?", p)); addField(new IntegerFieldEditor(MAX_PYLINT_DELTA, "Max delta to run PyLint?", p)); ! // FileFieldEditor fileField = new FileFieldEditor(PYLINT_FILE_LOCATION, "Location of pylint:", true, p); ! //not used - some patches had to be applied to pylint, so, the original might not work! ! // fileField.setEnabled(false, p); ! // addField(fileField); addField(new BooleanFieldEditor(USE_FATAL, "Communicate FATAL?", p)); |