Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 390245
Collapse All | Expand All

(-)a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/internal/ui/ExpressionInformationControlCreator.java (-2 / +11 lines)
Lines 380-385 public class ExpressionInformationControlCreator implements IInformationControlC Link Here
380
				}
380
				}
381
			});
381
			});
382
382
383
            setForegroundColor(getShell().getDisplay().getSystemColor(SWT.COLOR_INFO_FOREGROUND));
383
			setBackgroundColor(getShell().getDisplay().getSystemColor(SWT.COLOR_INFO_BACKGROUND));
384
			setBackgroundColor(getShell().getDisplay().getSystemColor(SWT.COLOR_INFO_BACKGROUND));
384
		}
385
		}
385
386
Lines 428-434 public class ExpressionInformationControlCreator implements IInformationControlC Link Here
428
			}
429
			}
429
		}
430
		}
430
431
431
		@Override
432
        @Override
433
        public void setForegroundColor(Color foreground) {
434
            super.setForegroundColor(foreground);
435
            if (fDetailPaneComposite != null) {
436
                fDetailPaneComposite.setForeground(foreground);
437
            }
438
            fTree.setForeground(foreground);
439
        }
440
441
        @Override
432
		public void setBackgroundColor(Color background) {
442
		public void setBackgroundColor(Color background) {
433
			super.setBackgroundColor(background);
443
			super.setBackgroundColor(background);
434
			if (fDetailPaneComposite != null) {
444
			if (fDetailPaneComposite != null) {
435
- 

Return to bug 390245