summaryrefslogtreecommitdiff
path: root/src/plugins/git/clonewizardpage.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2010-10-01 11:29:11 +0200
committerTobias Hunger <tobias.hunger@nokia.com>2010-10-04 17:19:16 +0200
commit6b85c2d520967f718a91e3a55bba58590111f4bf (patch)
treecda43e0c2daee9a561b4ae08eccc04a8a33d6cab /src/plugins/git/clonewizardpage.cpp
parente77a7b665788779ac9297f36349e391099cbcfd1 (diff)
downloadqt-creator-6b85c2d520967f718a91e3a55bba58590111f4bf.tar.gz
Polish the checkout wizard (base and git)
* Polish the base checkout wizard * Make UI easier to grasp * Add tooltips explaining things Task-number: QTCREATORBUG-2540 Reviewed-by: Robert Loehning
Diffstat (limited to 'src/plugins/git/clonewizardpage.cpp')
-rw-r--r--src/plugins/git/clonewizardpage.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/git/clonewizardpage.cpp b/src/plugins/git/clonewizardpage.cpp
index 504c60e283..3b321f96e4 100644
--- a/src/plugins/git/clonewizardpage.cpp
+++ b/src/plugins/git/clonewizardpage.cpp
@@ -63,7 +63,8 @@ CloneWizardPage::CloneWizardPage(QWidget *parent) :
setSubTitle(tr("Specify repository URL, checkout directory and path."));
setRepositoryLabel(tr("Clone URL:"));
d->deleteMasterCheckBox = new QCheckBox(tr("Delete master branch"));
- addControl(d->deleteMasterCheckBox);
+ d->deleteMasterCheckBox->setToolTip(tr("Delete the master branch after checking out the repository."));
+ addLocalControl(d->deleteMasterCheckBox);
setDeleteMasterBranch(true);
}