FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

some comments were corrected by bernardosulzbach · Pull Request #69 · sqlitebrowser/sqlitebrowser · GitHub

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .cpp  (2) All 1 file type selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
2 changes: 1 addition & 1 deletion src/EditTableDialog.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
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

Back | FazBrowse Home | New Git URL