mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
force deferred queries - non-deferred can introduce potential hangs and we always planned to get rid of that option too
This commit is contained in:
parent
f19c85aded
commit
0f7a7d69e8
1 changed files with 3 additions and 0 deletions
|
@ -166,16 +166,19 @@ public class RemoteSystemsPreferencePage
|
|||
restoreFromCache.setToolTipText(SystemResources.RESID_PREF_RESTOREFROMCACHE_PREFIX_TOOLTIP);
|
||||
// lastRestoreFromCacheValue = getPreferenceStore().getBoolean(ISystemPreferencesConstants.RESTORE_STATE_FROM_CACHE);
|
||||
|
||||
|
||||
// USE DEFERRED QUERY
|
||||
useDeferredQueryEditor = new SystemBooleanFieldEditor(
|
||||
ISystemPreferencesConstants.USE_DEFERRED_QUERIES,
|
||||
SystemResources.RESID_PREF_USEDEFERREDQUERIES_PREFIX_LABEL,
|
||||
getFieldEditorParent())
|
||||
;
|
||||
useDeferredQueryEditor.setEnabled(false); // disable this because we want it always to be true
|
||||
addField(useDeferredQueryEditor);
|
||||
useDeferredQueryEditor.setToolTipText(SystemResources.RESID_PREF_USEDEFERREDQUERIES_PREFIX_TOOLTIP);
|
||||
lastUseDeferredQueryValue = getPreferenceStore().getBoolean(useDeferredQueryEditor.getPreferenceName());
|
||||
|
||||
|
||||
/** FIXME - UDA should not be so coupled to core
|
||||
* might need a new preference page for this
|
||||
// CASCADE USER-DEFINED ACTIONS BY PROFILE
|
||||
|
|
Loading…
Add table
Reference in a new issue