misc changes/refactorings
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.sql / src / net / sourceforge / phpdt / sql / editors / SQLConfiguration.java
index 10a5a3c..97eae15 100644 (file)
@@ -42,18 +42,18 @@ public class SQLConfiguration extends SourceViewerConfiguration {
        }
        public void loadPrefs() {
                IPreferenceStore store = PHPEclipseSQLPlugin.getDefault().getPreferenceStore();
-               textBold = store.getBoolean("quantum.text.bold");
-               keywordBold = store.getBoolean("quantum.keyword.bold");
-               stringBold = store.getBoolean("quantum.string.bold");
-               commentBold = store.getBoolean("quantum.comment.bold");
-               numericBold = store.getBoolean("quantum.numeric.bold");
-               SQLColorConstants.BACKGROUND = PreferenceConverter.getColor(store, "quantum.background.color");
-               SQLColorConstants.DEFAULT = PreferenceConverter.getColor(store, "quantum.text.color");
-               SQLColorConstants.IDENTIFIER = PreferenceConverter.getColor(store, "quantum.text.color");
-               SQLColorConstants.KEYWORD = PreferenceConverter.getColor(store, "quantum.keyword.color");
-               SQLColorConstants.STRING = PreferenceConverter.getColor(store, "quantum.string.color");
-               SQLColorConstants.COMMENT = PreferenceConverter.getColor(store, "quantum.comment.color");
-               SQLColorConstants.NUMERIC = PreferenceConverter.getColor(store, "quantum.numeric.color");
+               textBold = store.getBoolean("phpeclipse.sql.text.bold");
+               keywordBold = store.getBoolean("phpeclipse.sql.keyword.bold");
+               stringBold = store.getBoolean("phpeclipse.sql.string.bold");
+               commentBold = store.getBoolean("phpeclipse.sql.comment.bold");
+               numericBold = store.getBoolean("phpeclipse.sql.numeric.bold");
+               SQLColorConstants.BACKGROUND = PreferenceConverter.getColor(store, "phpeclipse.sql.background.color");
+               SQLColorConstants.DEFAULT = PreferenceConverter.getColor(store, "phpeclipse.sql.text.color");
+               SQLColorConstants.IDENTIFIER = PreferenceConverter.getColor(store, "phpeclipse.sql.text.color");
+               SQLColorConstants.KEYWORD = PreferenceConverter.getColor(store, "phpeclipse.sql.keyword.color");
+               SQLColorConstants.STRING = PreferenceConverter.getColor(store, "phpeclipse.sql.string.color");
+               SQLColorConstants.COMMENT = PreferenceConverter.getColor(store, "phpeclipse.sql.comment.color");
+               SQLColorConstants.NUMERIC = PreferenceConverter.getColor(store, "phpeclipse.sql.numeric.color");
        }
        public void initializeColors() {
                setDamageRepairer(getAttr(SQLColorConstants.KEYWORD, keywordBold), SQLPartitionScanner.SQL_KEYWORD);