[Pydev-cvs] org.python.pydev.debug/src_console/org/python/pydev/debug/newconsole PydevConsole.java
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-06-28 12:35:35
|
Update of /cvsroot/pydev/org.python.pydev.debug/src_console/org/python/pydev/debug/newconsole In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12190/src_console/org/python/pydev/debug/newconsole Modified Files: PydevConsole.java Log Message: Backwards support for Eclipse 3.2. Index: PydevConsole.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/src_console/org/python/pydev/debug/newconsole/PydevConsole.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PydevConsole.java 6 Apr 2008 19:51:23 -0000 1.7 --- PydevConsole.java 28 Jun 2008 12:35:43 -0000 1.8 *************** *** 48,52 **** public PydevConsole(PydevConsoleInterpreter interpreter) { super(CONSOLE_NAME + " [" + getNextId() + "]", PydevConsoleConstants.CONSOLE_TYPE, interpreter); ! setBackground(ColorManager.getPreferenceColor(PydevConsoleConstants.CONSOLE_BACKGROUND_COLOR)); } --- 48,54 ---- public PydevConsole(PydevConsoleInterpreter interpreter) { super(CONSOLE_NAME + " [" + getNextId() + "]", PydevConsoleConstants.CONSOLE_TYPE, interpreter); ! this.setPydevConsoleBackground(ColorManager.getPreferenceColor(PydevConsoleConstants.CONSOLE_BACKGROUND_COLOR)); ! //Cannot be called directly because Eclipse 3.2does not support it. ! //setBackground(ColorManager.getPreferenceColor(PydevConsoleConstants.CONSOLE_BACKGROUND_COLOR)); } |