comparison multichoicedialog.cpp @ 202:3d4291d4226c

* Treat command failure on hg heads as a success, so that following actions happen properly (hg heads fails on empty repo) * Hide no-modifications-yet label when widget is first created, show it only if it would actually be true * Set directory name to window title * Various textual fixes
author Chris Cannam
date Tue, 04 Jan 2011 14:31:22 +0000
parents f16fe0db11f3
children 8fd71f570884
comparison
equal deleted inserted replaced
200:8c8c04bdf0fa 202:3d4291d4226c
47 47
48 m_descriptionLabel = new QLabel; 48 m_descriptionLabel = new QLabel;
49 outer->addWidget(m_descriptionLabel, 2, 0, 1, 3); 49 outer->addWidget(m_descriptionLabel, 2, 0, 1, 3);
50 50
51 QFont f = m_descriptionLabel->font(); 51 QFont f = m_descriptionLabel->font();
52 f.setPointSize(f.pointSize() * 0.9); 52 f.setPointSize(f.pointSize() * 0.95);
53 m_descriptionLabel->setFont(f); 53 m_descriptionLabel->setFont(f);
54 54
55 m_urlLabel = new QLabel(tr("&URL:")); 55 m_urlLabel = new QLabel(tr("&URL:"));
56 outer->addWidget(m_urlLabel, 3, 0); 56 outer->addWidget(m_urlLabel, 3, 0);
57 57