Skip to content

Commit 927c228

Browse files
isf63yan12125
authored andcommitted
Typo fixes
1 parent 325f98b commit 927c228

8 files changed

+18
-18
lines changed

CHANGELOG

+5-5
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ qterminal-0.16.0 / 2020-11-01
5858
* Use the default constructor of QFlags.
5959
* Dropped qmake .pro file.
6060
* Made the color scheme dirs comply with XDG Base Directory Specification.
61-
* Added an optopn for openning the new tab to the right of the active tab.
61+
* Added an optopn for opening the new tab to the right of the active tab.
6262
* Added virtual destructor to a base class.
6363
* Let QStandardPaths::locateAll() handle application name.
6464
* Put drop-down QTerminal on screen with cursor.
@@ -119,7 +119,7 @@ qterminal-0.14.0 / 2019-01-25
119119
- Refactor STR_VERSION -> QTERMINAL_VERSION
120120
* Improved cmake scripting
121121
- Set cmake_minimum_required to 3.1.0
122-
- Removed locale compile definitons
122+
- Removed locale compile definitions
123123
* Moved translations from lxqt-l10n back to qterminal
124124
- Removed obsolete translation fuctionality
125125
- Added translation promo in README.md
@@ -373,7 +373,7 @@ qterminal-0.5.0 / 2014-05-27
373373
* fixed #51 Shortcuts broken after menu hiding
374374
* fixed #50 Bookmarks panel always shows, even if the bookmarks are disabled
375375
* fixed #49 Only show monospace fonts in the font picker
376-
* save bookmars widget visibility; fix crash in some config circumstances
376+
* save bookmarks widget visibility; fix crash in some config circumstances
377377
* Include QApplication where needed. Fixes #47
378378
* removed un-needed file
379379
* changes required for new qtermwidget build/structure; includes fixed for qtermwidget Qt5 port
@@ -404,7 +404,7 @@ qterminal-0.5.0 / 2014-05-27
404404
* fixed main window ui file (manually edited probably) to work with designr again. Use "Preferences..." instead of "Configure QTerminal"
405405
* compile also italian translations
406406
* added italian translations
407-
* get rid of contraproductive Ctrl-W to close a tab. Replaced that wieht Ctrl-Shift-W. Use nano in qterminal and try to search. You will see, what i mean ... * it takes a horizontal ruler to tile a terminal vertically and vice versa * make border of active terminal a litte bit thinner 3px -> 2px
407+
* get rid of contraproductive Ctrl-W to close a tab. Replaced that wieht Ctrl-Shift-W. Use nano in qterminal and try to search. You will see, what i mean ... * it takes a horizontal ruler to tile a terminal vertically and vice versa * make border of active terminal a little bit thinner 3px -> 2px
408408
* Added new action: "Paste Selection". Fixes #21
409409
* Handle migration "Paste Selection"->"Paste Clipboard" in settings
410410
* Rename PASTE_SELECTION to PASTE_CLIPBOARD which is what it does
@@ -432,7 +432,7 @@ qterminal-0.5.0 / 2014-05-27
432432
* yakuake mode compile fix for X11
433433
* build on mac
434434
* Switch to Qxt global shortcut
435-
* "make lupdate" implemented; do ot delete ts files on "make clean"; fix translator loading
435+
* "make lupdate" implemented; do not delete ts files on "make clean"; fix translator loading
436436
* DropDown mode
437437
* allow translations
438438
* tabs to spaces

Doxyfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ TYPEDEF_HIDES_STRUCT = NO
279279
# For small to medium size projects (<1000 input files) the default value is
280280
# probably good enough. For larger projects a too small cache size can cause
281281
# doxygen to be busy swapping symbols to and from disk most of the time
282-
# causing a significant performance penality.
282+
# causing a significant performance penalty.
283283
# If the system has enough physical memory increasing the cache will improve the
284284
# performance by keeping more symbols in memory. Note that the value works on
285285
# a logarithmic scale so increasing the size by one will roughly double the
@@ -1050,7 +1050,7 @@ EXT_LINKS_IN_WINDOW = NO
10501050

10511051
FORMULA_FONTSIZE = 10
10521052

1053-
# Use the FORMULA_TRANPARENT tag to determine whether or not the images
1053+
# Use the FORMULA_TRANSPARENT tag to determine whether or not the images
10541054
# generated for formulas are transparent PNGs. Transparent PNGs are
10551055
# not supported properly for IE 6.0, but are supported on all modern browsers.
10561056
# Note that when changing this option you need to delete any form_*.png files

src/mainwindow.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -329,13 +329,13 @@ void MainWindow::setup_ActionsMenu_Actions()
329329

330330
// TODO/FIXME: unimplemented for now
331331
act = new QAction(tr("&Save Session"), this);
332-
// do not use sequences for this task - it collides with eg. mc shorcuts
332+
// do not use sequences for this task - it collides with eg. mc shortcuts
333333
// and mainly - it's not used too often
334334
//act->setShortcut(QKeySequence::Save);
335335
connect(act, SIGNAL(triggered()), consoleTabulator, SLOT(saveSession()));
336336

337337
act = new QAction(tr("&Load Session"), this);
338-
// do not use sequences for this task - it collides with eg. mc shorcuts
338+
// do not use sequences for this task - it collides with eg. mc shortcuts
339339
// and mainly - it's not used too often
340340
//act->setShortcut(QKeySequence::Open);
341341
connect(act, SIGNAL(triggered()), consoleTabulator, SLOT(loadSession()));
@@ -734,7 +734,7 @@ void MainWindow::realign()
734734
const QRect desktop = appScreen->availableGeometry();
735735
QRect g = QRect(desktop.x(),
736736
desktop.y(),
737-
desktop.width() * Properties::Instance()->dropWidht / 100,
737+
desktop.width() * Properties::Instance()->dropWidth / 100,
738738
desktop.height() * Properties::Instance()->dropHeight / 100);
739739
g.moveCenter(desktop.center());
740740
// do not use 0 here - we need to calculate with potential panel on top

src/properties.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ void Properties::loadSettings()
149149
dropShortCut = QKeySequence(m_settings->value(QLatin1String("ShortCut"), QLatin1String("F12")).toString());
150150
dropKeepOpen = m_settings->value(QLatin1String("KeepOpen"), false).toBool();
151151
dropShowOnStart = m_settings->value(QLatin1String("ShowOnStart"), true).toBool();
152-
dropWidht = m_settings->value(QLatin1String("Width"), 70).toInt();
152+
dropWidth = m_settings->value(QLatin1String("Width"), 70).toInt();
153153
dropHeight = m_settings->value(QLatin1String("Height"), 45).toInt();
154154
m_settings->endGroup();
155155

@@ -258,7 +258,7 @@ void Properties::saveSettings()
258258
m_settings->setValue(QLatin1String("ShortCut"), dropShortCut.toString());
259259
m_settings->setValue(QLatin1String("KeepOpen"), dropKeepOpen);
260260
m_settings->setValue(QLatin1String("ShowOnStart"), dropShowOnStart);
261-
m_settings->setValue(QLatin1String("Width"), dropWidht);
261+
m_settings->setValue(QLatin1String("Width"), dropWidth);
262262
m_settings->setValue(QLatin1String("Height"), dropHeight);
263263
m_settings->endGroup();
264264

src/properties.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class Properties
111111
QKeySequence dropShortCut;
112112
bool dropKeepOpen;
113113
bool dropShowOnStart;
114-
int dropWidht;
114+
int dropWidth;
115115
int dropHeight;
116116

117117
bool changeWindowTitle;

src/propertiesdialog.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ PropertiesDialog::PropertiesDialog(QWidget *parent)
243243
dropHeightSpinBox->setMaximum(100);
244244
dropWidthSpinBox->setMaximum(100);
245245
dropHeightSpinBox->setValue(Properties::Instance()->dropHeight);
246-
dropWidthSpinBox->setValue(Properties::Instance()->dropWidht);
246+
dropWidthSpinBox->setValue(Properties::Instance()->dropWidth);
247247

248248
dropShortCutEdit = new KeySequenceEdit();
249249
dropShortCutFormLayout->setWidget(0, QFormLayout::FieldRole, dropShortCutEdit);
@@ -364,7 +364,7 @@ void PropertiesDialog::apply()
364364
Properties::Instance()->dropShowOnStart = dropShowOnStartCheckBox->isChecked();
365365
Properties::Instance()->dropKeepOpen = dropKeepOpenCheckBox->isChecked();
366366
Properties::Instance()->dropHeight = dropHeightSpinBox->value();
367-
Properties::Instance()->dropWidht = dropWidthSpinBox->value();
367+
Properties::Instance()->dropWidth = dropWidthSpinBox->value();
368368
Properties::Instance()->dropShortCut = dropShortCutEdit->keySequence();
369369

370370
Properties::Instance()->useBookmarks = useBookmarksCheckBox->isChecked();

src/tabwidget.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ void TabWidget::onCurrentChanged(int index)
364364
{
365365
// update disabled actions
366366
findParent<MainWindow>(this)->updateDisabledActions();
367-
// also, update hstory
367+
// also, update history
368368
auto* w = widget(index);
369369
mHistory.removeAll(w);
370370
mHistory.prepend(w);
@@ -377,7 +377,7 @@ const QList<QWidget*>& TabWidget::history() const
377377

378378
void TabWidget::removeCurrentTab()
379379
{
380-
// question disabled due user requests. Yes I agree it was anoying.
380+
// question disabled due user requests. Yes I agree it was annoying.
381381
// if (QMessageBox::question(this,
382382
// tr("Close current session"),
383383
// tr("Are you sure you want to close current sesstion?"),

src/termwidgetholder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ typedef enum NavigationDirection {
3737

3838
/*! \brief TermWidget group/session manager.
3939
40-
This widget (one per TabWidget tab) is a "proxy" widget beetween TabWidget and
40+
This widget (one per TabWidget tab) is a "proxy" widget between TabWidget and
4141
unspecified count of TermWidgets. Basically it should look like a single TermWidget
4242
for TabWidget - with its signals and slots.
4343

0 commit comments

Comments
 (0)