Skip to content

Commit

Permalink
Only allow selection of tables in Export SQL dialog
Browse files Browse the repository at this point in the history
Only allow the user to select which tables to export in the Export SQL
dialog instead of tables and views. The selection of views wasn't
respected anyway, so the list including views is just confusing.
  • Loading branch information
MKleusberg committed May 16, 2018
1 parent 28baba8 commit b384027
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ExportSqlDialog.cpp
Expand Up @@ -28,9 +28,9 @@ ExportSqlDialog::ExportSqlDialog(DBBrowserDB* db, QWidget* parent, const QString
ui->comboOldSchema->setCurrentIndex(Settings::getValue("exportsql", "oldschema").toInt()); ui->comboOldSchema->setCurrentIndex(Settings::getValue("exportsql", "oldschema").toInt());


// Get list of tables to export // Get list of tables to export
objectMap objects = pdb->getBrowsableObjects("main"); QList<sqlb::ObjectPtr> objects = pdb->schemata["main"].values("table");
for(auto it=objects.constBegin();it!=objects.constEnd();++it) for(const sqlb::ObjectPtr& it : objects)
ui->listTables->addItem(new QListWidgetItem(QIcon(QString(":icons/%1").arg(sqlb::Object::typeToString((*it)->type()))), (*it)->name())); ui->listTables->addItem(new QListWidgetItem(QIcon(QString(":icons/%1").arg(sqlb::Object::typeToString(it->type()))), it->name()));


// Sort list of tables and select the table specified in the // Sort list of tables and select the table specified in the
// selection parameter or all tables if table not specified // selection parameter or all tables if table not specified
Expand Down

0 comments on commit b384027

Please sign in to comment.