Skip to content

Commit e8405b7

Browse files
committed
fixed wrong spelled words
1 parent ceecb5a commit e8405b7

23 files changed

Lines changed: 36 additions & 36 deletions

BUILDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ Now compile:
227227

228228
$ make
229229

230-
If you additionaly want an NSIS installer:
230+
If you additionally want an NSIS installer:
231231

232232
$ make package
233233

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Install the package using:
129129

130130
#### Stable release
131131

132-
For Ubuntu and derivaties, [@deepsidhu1313](https://github.com/deepsidhu1313)
132+
For Ubuntu and derivatives, [@deepsidhu1313](https://github.com/deepsidhu1313)
133133
provides a PPA with the latest release here:
134134

135135
* https://launchpad.net/~linuxgndu/+archive/ubuntu/sqlitebrowser

src/EditDialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ void EditDialog::exportData()
454454
break;
455455
case RtlText:
456456
case Text:
457-
// Include the XML case on the text data type, since XML detection is not very sofisticated.
457+
// Include the XML case on the text data type, since XML detection is not very sophisticated.
458458
if (ui->comboMode->currentIndex() == XmlEditor)
459459
filters << FILE_FILTER_XML
460460
<< FILE_FILTER_TXT;

src/EditIndexDialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ void EditIndexDialog::updateColumnLists()
141141
}
142142
}
143143

144-
// Set row count to actual count. This is needed for the intial loading, when some rows might have been omitted because they were used in the index
144+
// Set row count to actual count. This is needed for the initial loading, when some rows might have been omitted because they were used in the index
145145
ui->tableTableColumns->setRowCount(tableRows);
146146

147147
// Fill the index column list. This is done separately from the table column to include expression columns (these are not found in the original

src/FilterLineEdit.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,15 @@ void FilterLineEdit::keyReleaseEvent(QKeyEvent* event)
8585

8686
void FilterLineEdit::clear()
8787
{
88-
// When programatically clearing the line edit's value make sure the effects are applied immediately, i.e.
88+
// When programmatically clearing the line edit's value make sure the effects are applied immediately, i.e.
8989
// bypass the delayed signal timer
9090
QLineEdit::clear();
9191
delayedSignalTimerTriggered();
9292
}
9393

9494
void FilterLineEdit::setText(const QString& text)
9595
{
96-
// When programatically setting the line edit's value make sure the effects are applied immediately, i.e.
96+
// When programmatically setting the line edit's value make sure the effects are applied immediately, i.e.
9797
// bypass the delayed signal timer
9898
QLineEdit::setText(text);
9999
delayedSignalTimerTriggered();

src/FilterLineEdit.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class FilterLineEdit : public QLineEdit
1414
public:
1515
explicit FilterLineEdit(QWidget* parent, std::vector<FilterLineEdit*>* filters = nullptr, size_t columnnum = 0);
1616

17-
// Override methods for programatically changing the value of the line edit
17+
// Override methods for programmatically changing the value of the line edit
1818
void clear();
1919
void setText(const QString& text);
2020

src/FilterTableHeader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ void FilterTableHeader::clearAllCondFormats()
110110

111111
void FilterTableHeader::editCondFormats()
112112
{
113-
// Just get the column number and the new value and send them to anybody interested in editting conditional formatting
113+
// Just get the column number and the new value and send them to anybody interested in editing conditional formatting
114114
emit condFormatsEdited(sender()->property("column").toUInt());
115115
}
116116

src/ImageViewer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ void ImageViewer::scaleToFitWindow(bool enabled)
6868

6969
void ImageViewer::scaleImage(int scale)
7070
{
71-
// Make sure the slider is updated when this is called programatically
71+
// Make sure the slider is updated when this is called programmatically
7272
ui->sliderScale->setValue(scale);
7373

7474
// Update our scale factor
@@ -81,7 +81,7 @@ void ImageViewer::scaleImage(int scale)
8181
// Uncheck the fit to window button
8282
ui->buttonFitToWindow->setChecked(false);
8383

84-
// Fix scroll bars to zoom into center of viewport instead of tthe upper left corner
84+
// Fix scroll bars to zoom into center of viewport instead of the upper left corner
8585
const auto adjust_scrollbar = [](QScrollBar* scroll_bar, qreal factor) {
8686
scroll_bar->setValue(static_cast<int>(factor * scroll_bar->value() + ((factor - 1) * scroll_bar->pageStep() / 2)));
8787
};

src/ImportCsvDialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ bool ImportCsvDialog::importCsv(const QString& fileName, const QString& name)
626626
qint64 timeAtStartOfRowFunction = timer.elapsed();
627627
#endif
628628

629-
// Save row num for later use. This is used in the case of an error to tell the user in which row the error ocurred
629+
// Save row num for later use. This is used in the case of an error to tell the user in which row the error occurred
630630
lastRowNum = rowNum;
631631

632632
// If this is the first row and we want to use the first row as table header, skip it now because this is the data import, not the header parsing

src/MainWindow.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ void MainWindow::init()
316316
action->setCheckable(true);
317317
action->setChecked(ui->mainTab->indexOf(widget) != -1);
318318
connect(action, &QAction::toggled, [=](bool show) { toggleTabVisible(widget, show); });
319-
// Connect tabCloseRequested for setting checked the appropiate menu entry.
319+
// Connect tabCloseRequested for setting checked the appropriate menu entry.
320320
// Note these are called after the actual tab is closed only because they are connected
321321
// after connecting closeTab.
322322
connect(ui->mainTab, &QTabWidget::tabCloseRequested, [=](int /*index*/) {
@@ -2375,7 +2375,7 @@ void MainWindow::on_actionWiki_triggered() const
23752375
QDesktopServices::openUrl(QUrl("https://github.com/sqlitebrowser/sqlitebrowser/wiki"));
23762376
}
23772377

2378-
// 'Help | Bug Report...' link will set an appropiate body, add the system information and set the label 'bug' automatically to the issue
2378+
// 'Help | Bug Report...' link will set an appropriate body, add the system information and set the label 'bug' automatically to the issue
23792379
void MainWindow::on_actionBug_report_triggered() const
23802380
{
23812381
const QString version = Application::versionString();
@@ -2414,7 +2414,7 @@ void MainWindow::on_actionBug_report_triggered() const
24142414
QDesktopServices::openUrl(url);
24152415
}
24162416

2417-
// 'Help | Feature Request...' link will set an appropiate body and add the label 'enhancement' automatically to the issue
2417+
// 'Help | Feature Request...' link will set an appropriate body and add the label 'enhancement' automatically to the issue
24182418
void MainWindow::on_actionFeature_Request_triggered() const
24192419
{
24202420
QUrlQuery query;
@@ -3543,7 +3543,7 @@ void MainWindow::toggleTabVisible(QWidget* tabWidget, bool show)
35433543

35443544
void MainWindow::restoreOpenTabs(QString tabs)
35453545
{
3546-
// Split the tab list, skiping the empty parts so the empty string turns to an empty list
3546+
// Split the tab list, skipping the empty parts so the empty string turns to an empty list
35473547
// and not a list of one empty string.
35483548
QStringList tabList = tabs.split(' ', QString::SkipEmptyParts);
35493549

0 commit comments

Comments
 (0)