Skip to content

Commit a16d17a

Browse files
authored
Fix various typos (#692)
* Fix various typos Found via `codespell -q 3 -L te,ridiculus,varius` * Add another typo fix
1 parent faf24cd commit a16d17a

7 files changed

+10
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ highlights are:
582582
- Simple Drag & Drop user interface.
583583
- Load data from file.
584584
- Connect to live streaming of data.
585-
- Save the visualization layout and configurations to re-use them later.
585+
- Save the visualization layout and configurations to reuse them later.
586586
- Fast OpenGL visualization.
587587
- Can handle thousands of timeseries and millions of data points.
588588
- Transform your data using a simple editor: derivative, moving average, integral, etc…

doc/user-guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ When an entire area is closed, the default behavior is to hide the dock widgets
853853
854854
It is possible to globally lock features of all dock widgets to "freeze" the
855855
current workspace layout. That means, you can now lock your workspace
856-
to avoid accidentally dragging a docked view. When locking was't possible,
856+
to avoid accidentally dragging a docked view. When locking wasn't possible,
857857
users had to manually dock it back to the desired place after each accidental
858858
undock.
859859

src/DockAreaWidget.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ struct DockAreaWidgetPrivate
270270
DockAreaWidgetPrivate(CDockAreaWidget* _public);
271271

272272
/**
273-
* Convencience function to ease components factory access
273+
* Convenience function to ease components factory access
274274
*/
275275
QSharedPointer<ads::CDockComponentsFactory> componentsFactory() const
276276
{
@@ -379,10 +379,10 @@ void DockAreaWidgetPrivate::updateTitleBarButtonStates()
379379

380380
if (_this->isAutoHide())
381381
{
382-
if (CDockManager::testAutoHideConfigFlag(CDockManager::AutoHideHasCloseButton))
383-
{
382+
if (CDockManager::testAutoHideConfigFlag(CDockManager::AutoHideHasCloseButton))
383+
{
384384
TitleBar->button(TitleBarButtonClose)->setEnabled(
385-
_this->features().testFlag(CDockWidget::DockWidgetClosable));
385+
_this->features().testFlag(CDockWidget::DockWidgetClosable));
386386
}
387387
}
388388
else

src/DockComponentsFactory.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class ADS_EXPORT CDockComponentsFactory
6767

6868
/**
6969
* This returns the default dock components factory instance.
70-
* If no components factory is assigned to a specifc dock manager, this
70+
* If no components factory is assigned to a specific dock manager, this
7171
* global factory instance will be used.
7272
*/
7373
static QSharedPointer<ads::CDockComponentsFactory> factory();

src/DockManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ CDockManager::~CDockManager()
555555
{
556556
if (!area || area->dockManager() != this) continue;
557557

558-
// QPointer delete safety - just in case some dock wigdet in destruction
558+
// QPointer delete safety - just in case some dock widget in destruction
559559
// deletes another related/twin or child dock widget.
560560
std::vector<QPointer<QWidget>> deleteWidgets;
561561
for ( auto widget : area->dockWidgets() )

src/ads_globals.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ QString detectWindowManagerX11()
283283
}
284284
if(sup_windows.length() == 0)
285285
{
286-
ADS_PRINT("Failed to get the supporting window on non EWMH comform WM.");
286+
ADS_PRINT("Failed to get the supporting window on non EWMH conform WM.");
287287
return "UNKNOWN";
288288
}
289289
support_win = sup_windows[0];

src/ads_globals.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ SideBarLocation toSideBarLocation(DockWidgetArea Area);
236236

237237

238238
/**
239-
* Returns true for the top or bottom side bar ansd false for the
239+
* Returns true for the top or bottom side bar and false for the
240240
* left and right side bar
241241
*/
242242
bool isHorizontalSideBarLocation(SideBarLocation Location);

0 commit comments

Comments
 (0)