~bzr-eclipse/bzr-eclipse/trunk

« back to all changes in this revision

Viewing changes to org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/LocationInputDialog.java

  • Committer: Piotr Piastucki
  • Date: 2013-09-26 12:31:48 UTC
  • mfrom: (366.1.3 bzr-eclipse-pp)
  • Revision ID: piotr_piastucki-20130926123148-v182l4l2kfzkxqst
MergeĀ lp:~piastucki/bzr-eclipse/branch-location-manager

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
import org.vcs.bazaar.eclipse.core.repository.BranchFactory;
36
36
import org.vcs.bazaar.eclipse.internal.core.model.RemoteBranch;
37
37
import org.vcs.bazaar.eclipse.ui.UITexts;
 
38
import org.vcs.bazaar.eclipse.ui.branch.BranchLocationManager;
38
39
import org.vcs.bazaar.eclipse.ui.widgets.RevisionNumber;
39
40
 
40
41
/**
302
303
                        info.setCreateBranch(createBranch.getSelection());
303
304
                }
304
305
                info.setLocation(getValue());
 
306
                BranchLocationManager.saveBranchLocation(getValue());
305
307
                super.okPressed();
306
308
        }
307
309