Mercurial > hg > easyhg
changeset 300:5e4a10af7945
Minor layout & text changes
author | Chris Cannam |
---|---|
date | Tue, 22 Feb 2011 15:51:47 +0000 |
parents | fd6abd505f31 |
children | 3bb6b63420ad 6dc0a4dc6cf5 |
files | incomingdialog.cpp mainwindow.cpp |
diffstat | 2 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/incomingdialog.cpp Tue Feb 22 15:32:00 2011 +0000 +++ b/incomingdialog.cpp Tue Feb 22 15:51:47 2011 +0000 @@ -81,6 +81,9 @@ QDialogButtonBox *bb = new QDialogButtonBox(QDialogButtonBox::Ok); connect(bb, SIGNAL(accepted()), this, SLOT(accept())); layout->addWidget(bb, 2, 0, 1, 2); + + layout->setColumnStretch(1, 20); + setMinimumWidth(400); }
--- a/mainwindow.cpp Tue Feb 22 15:32:00 2011 +0000 +++ b/mainwindow.cpp Tue Feb 22 15:51:47 2011 +0000 @@ -1594,6 +1594,7 @@ int n = extractChangeCount(output); if (n > 0) { head = tr("Pushed %n changeset(s)", "", n); + report = tr("<qt>Successfully pushed to the remote repository at <code>%1</code>.</qt>").arg(xmlEncode(m_remoteRepoPath)); } else if (n == 0) { head = tr("No changes to push"); report = tr("The remote repository already contains all changes that have been committed locally.");