[Pydev-cvs] org.python.pydev.debug/src_console/org/python/pydev/debug/newconsole/prefs Interactive
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-06-15 01:25:28
|
Update of /cvsroot/pydev/org.python.pydev.debug/src_console/org/python/pydev/debug/newconsole/prefs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2965/src_console/org/python/pydev/debug/newconsole/prefs Modified Files: InteractiveConsolePrefs.java Log Message: Using API compatible with eclipse 3.2 to create preferences. Index: InteractiveConsolePrefs.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/src_console/org/python/pydev/debug/newconsole/prefs/InteractiveConsolePrefs.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** InteractiveConsolePrefs.java 4 Apr 2008 02:54:42 -0000 1.2 --- InteractiveConsolePrefs.java 15 Jun 2008 01:25:35 -0000 1.3 *************** *** 13,16 **** --- 13,20 ---- public class InteractiveConsolePrefs extends FieldEditorPreferencePage implements IWorkbenchPreferencePage{ + public InteractiveConsolePrefs() { + super(FLAT); + } + @Override protected void createFieldEditors() { *************** *** 40,44 **** setDescription("Pydev interactive console preferences."); setPreferenceStore(PydevDebugPlugin.getDefault().getPreferenceStore()); - } --- 44,47 ---- |