Fixed previous SettingsDlg layout fix
authorJari Jarvi <t7jaja00@students.oamk.fi>
Tue, 29 Jun 2010 09:00:29 +0000 (12:00 +0300)
committerJari Jarvi <t7jaja00@students.oamk.fi>
Tue, 29 Jun 2010 09:00:29 +0000 (12:00 +0300)
src/settingsdlg.cpp

index c721f49..1be79bb 100644 (file)
@@ -16,8 +16,8 @@ SettingsDlg::SettingsDlg(QWidget *parent)
 {
     QSettings settings(this);
     m_layout = new QVBoxLayout(this);
-    m_btnLayout = new QHBoxLayout(m_layout);
-    m_remoteNameLayout = new QHBoxLayout(m_layout);
+    m_btnLayout = new QHBoxLayout();
+    m_remoteNameLayout = new QHBoxLayout();
     
     m_advSettingsBtn = new QPushButton(tr("Advanced"), this);
     m_selectRemoteBtn = new QPushButton(tr("Select remote"), this);
@@ -57,6 +57,8 @@ SettingsDlg::SettingsDlg(QWidget *parent)
     connect(m_rateDownBtn, SIGNAL(clicked()),
             this, SLOT(rateDownClicked()));
  
+    m_layout->addLayout(m_remoteNameLayout);
+    m_layout->addLayout(m_btnLayout);
     this->setLayout(m_layout);
 
     QString selectedRemote = QSettings(this).value("remoteName", "").toString();