~piastucki/bzr-eclipse/execute-bit

« back to all changes in this revision

Viewing changes to org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/BazaarLightweightDecorator.java

  • Committer: Guillermo Gonzalez
  • Date: 2010-02-02 06:40:31 UTC
  • mfrom: (219 trunk)
  • mto: This revision was merged to the branch mainline in revision 223.
  • Revision ID: guillo.gonzo@gmail.com-20100202064031-r0hch2h8bq67y1sx
merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
import org.eclipse.jface.viewers.ILightweightLabelDecorator;
20
20
import org.eclipse.jface.viewers.LabelProvider;
21
21
import org.eclipse.jface.viewers.LabelProviderChangedEvent;
22
 
import org.eclipse.swt.widgets.Display;
23
22
import org.eclipse.team.core.RepositoryProvider;
 
23
import org.eclipse.ui.PlatformUI;
24
24
import org.vcs.bazaar.client.IBazaarLogMessage;
25
25
import org.vcs.bazaar.eclipse.BzrWorkspaceRoot;
26
26
import org.vcs.bazaar.eclipse.EclipseBazaarCore;
160
160
        }
161
161
 
162
162
        private void fireLabelChangeEvent(final LabelProviderChangedEvent event) {
163
 
                Display.getDefault().asyncExec(new Runnable() {
 
163
                PlatformUI.getWorkbench().getDisplay().asyncExec(new Runnable() {
164
164
                        public void run() {
165
165
                                fireLabelProviderChanged(event);
166
166
                        }