X-Git-Url: http://git.phpeclipse.com diff --git a/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/preferences/GlobalPreferences.java b/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/preferences/GlobalPreferences.java index 05156eb..079ca43 100644 --- a/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/preferences/GlobalPreferences.java +++ b/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/preferences/GlobalPreferences.java @@ -1,16 +1,14 @@ package com.quantum.preferences; -import com.quantum.Messages; -import com.quantum.QuantumPlugin; - import org.eclipse.jface.preference.FieldEditorPreferencePage; -import org.eclipse.jface.preference.IPreferenceStore; import org.eclipse.jface.preference.IntegerFieldEditor; -import org.eclipse.jface.preference.StringFieldEditor; import org.eclipse.ui.IWorkbench; import org.eclipse.ui.IWorkbenchPreferencePage; +import com.quantum.Messages; +import com.quantum.QuantumPlugin; + /** * PreferencePage for the global options on QuantumDB * @author panic @@ -22,19 +20,12 @@ implements IWorkbenchPreferencePage { public GlobalPreferences() { super(FieldEditorPreferencePage.GRID); - - // Set the preference store for the preference page. - IPreferenceStore store = - QuantumPlugin.getDefault().getPreferenceStore(); - setPreferenceStore(store); + setPreferenceStore(QuantumPlugin.getDefault().getPreferenceStore()); } public void init(IWorkbench workbench) { - this.workbench = workbench; } - IWorkbench workbench; - protected void createFieldEditors() { IntegerFieldEditor queryHistorySize = new IntegerFieldEditor( "com.quantum.model.Bookmark.queryHistorySize", @@ -43,7 +34,5 @@ implements IWorkbenchPreferencePage { getFieldEditorParent()); queryHistorySize.setValidRange(0, Integer.MAX_VALUE); this.addField(queryHistorySize); - StringFieldEditor askPasswordString = new StringFieldEditor("askPasswordString", "&Ask for password string:", getFieldEditorParent()); - this.addField(askPasswordString); } }