void QgsOpenVectorLayerDialog::editConnection()
{
    QgsNewOgrConnection *nc = new QgsNewOgrConnection( this, cmbDatabaseTypes->currentText(), cmbConnections->currentText() );
    nc->exec();
    delete nc;

    populateConnectionList();
}
Exemple #2
0
void QgsOgrSourceSelect::editConnection()
{
  QgsNewOgrConnection *nc = new QgsNewOgrConnection( this, cmbDatabaseTypes->currentText(), cmbConnections->currentText() );
  nc->exec();
  delete nc;

  populateConnectionList();
}
void QgsOpenVectorLayerDialog::addNewConnection()
{
    QgsNewOgrConnection *nc = new QgsNewOgrConnection( this );
    nc->exec();
    delete nc;

    populateConnectionList();
}
Exemple #4
0
void QgsOgrSourceSelect::addNewConnection()
{
  QgsNewOgrConnection *nc = new QgsNewOgrConnection( this );
  nc->exec();
  delete nc;

  populateConnectionList();
}