Rename method in buildsettingspropertiespage.

* Init is really setting up the UI, so rename it to setupUi.

Reviewed-by: dt
This commit is contained in:
Tobias Hunger
2009-12-07 15:17:37 +01:00
parent 717e0d3956
commit c05c1ceb76
2 changed files with 3 additions and 3 deletions

View File

@@ -109,10 +109,10 @@ BuildSettingsWidget::BuildSettingsWidget(Project *project) :
m_leftMargin(0)
{
// Provide some time for our contentsmargins to get updated:
QTimer::singleShot(0, this, SLOT(init()));
QTimer::singleShot(0, this, SLOT(setupUi()));
}
void BuildSettingsWidget::init()
void BuildSettingsWidget::setupUi()
{
QMargins margins(contentsMargins());
m_leftMargin = margins.left();