Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

some comments were corrected #69

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/EditTableDialog.cpp
Expand Up @@ -356,7 +356,7 @@ void EditTableDialog::removeField()
} else {
// Editing an old one

// Ask user wether he really wants to delete that column
// Ask user whether he really wants to delete that column
QString msg = tr("Are you sure you want to delete the field '%1'?\nAll data currently stored in this field will be lost.").arg(ui->treeWidget->currentItem()->text(0));
if(QMessageBox::warning(this, QApplication::applicationName(), msg, QMessageBox::Yes | QMessageBox::Default, QMessageBox::No | QMessageBox::Escape) == QMessageBox::Yes)
{
Expand Down
10 changes: 5 additions & 5 deletions src/MainWindow.cpp
Expand Up @@ -352,7 +352,7 @@ void MainWindow::resetBrowser()
objmap[i.value().getname()] = i.value();;
}

// finaly fill the combobox in sorted order
// Finally fill the combobox in sorted order
for(QMap<QString, DBBrowserObject>::ConstIterator it=objmap.constBegin();
it!=objmap.constEnd();
++it)
Expand Down Expand Up @@ -646,7 +646,7 @@ void MainWindow::doubleClickTable(const QModelIndex& index)
/*
* I'm still not happy how the results are represented to the user
* right now you only see the result of the last executed statement.
* A better experiance would be tabs on the bottom with query results
* A better experience would be tabs on the bottom with query results
* for all the executed statements.
* Or at least a some way the use could see results/status message
* per executed statement.
Expand Down Expand Up @@ -857,7 +857,7 @@ void MainWindow::importDatabaseFromSQL()
if(!QFile::exists(fileName))
return;

// If there is already a database file opened ask the user wether to import into this one or a new one. If no DB is opened just ask for a DB name directly
// If there is already a database file opened ask the user whether to import into this one or a new one. If no DB is opened just ask for a DB name directly
QString newDbFile;
if((db.isOpen() && QMessageBox::question(this,
QApplication::applicationName(),
Expand Down Expand Up @@ -892,7 +892,7 @@ void MainWindow::importDatabaseFromSQL()
f.close();
QApplication::restoreOverrideCursor();

// Resfresh window when importing into an existing DB or - when creating a new file - just open it correctly
// Refresh window when importing into an existing DB or - when creating a new file - just open it correctly
if(newDbFile.size())
{
fileOpen(newDbFile);
Expand Down Expand Up @@ -1412,7 +1412,7 @@ QVariant::Type guessdatatype(SqliteTableModel* model, int column)

void MainWindow::updatePlot(SqliteTableModel *model, bool update)
{
// add columns to x/y seleciton tree widget
// add columns to x/y selection tree widget
if(update)
{
// disconnect treeplotcolumns item changed updates
Expand Down