Skip to content

Commit

Permalink
Fix for ticket #197. The tab order is now set by the .ui file rather
Browse files Browse the repository at this point in the history
than explicit code in the .cpp file.


git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5614 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jul 20, 2006
1 parent f082966 commit 2dd1595
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/gui/qgsnewhttpconnection.cpp
Expand Up @@ -42,13 +42,6 @@ QgsNewHttpConnection::QgsNewHttpConnection(QWidget *parent, const QString& connN
txtProxyUser->setText(settings.readEntry(key + "/proxyuser"));
txtProxyPass->setText(settings.readEntry(key + "/proxypassword"));
}

QWidget::setTabOrder(txtName, txtUrl);
QWidget::setTabOrder(txtUrl, (QWidget*)btnOk);
QWidget::setTabOrder((QWidget*)btnOk, (QWidget*)btnCancel);
QWidget::setTabOrder((QWidget*)btnCancel, (QWidget*)btnHelp);
QWidget::setTabOrder((QWidget*)btnHelp, txtName);

}

QgsNewHttpConnection::~QgsNewHttpConnection()
Expand Down

0 comments on commit 2dd1595

Please sign in to comment.