Fix doxygen and misc. typos
Found via `codespell -q 3 -L ba,keypair,numer,uint`
This commit is contained in:
+1
-1
@@ -102,7 +102,7 @@ void Core::Start()
|
||||
startup_project_ = args.first();
|
||||
}
|
||||
|
||||
// Declare custom types for Qt signal/slot syste
|
||||
// Declare custom types for Qt signal/slot system
|
||||
DeclareTypesForQt();
|
||||
|
||||
// Set up node factory/library
|
||||
|
||||
+1
-1
@@ -245,7 +245,7 @@ public slots:
|
||||
void CreateNewFolder();
|
||||
|
||||
/**
|
||||
* @brief Createa a new sequence in the currently active project
|
||||
* @brief Create a new sequence in the currently active project
|
||||
*/
|
||||
void CreateNewSequence();
|
||||
|
||||
|
||||
@@ -64,7 +64,7 @@ PreferencesGeneralTab::PreferencesGeneralTab()
|
||||
|
||||
general_layout->addWidget(new QLabel(tr("Auto-Scroll Method:")), row, 0);
|
||||
|
||||
// ComboBox indices match enum indicies
|
||||
// ComboBox indices match enum indices
|
||||
autoscroll_method_ = new QComboBox();
|
||||
autoscroll_method_->addItem(tr("None"), AutoScroll::kNone);
|
||||
autoscroll_method_->addItem(tr("Page Scrolling"), AutoScroll::kPage);
|
||||
|
||||
+1
-1
@@ -248,7 +248,7 @@ public:
|
||||
const QString id() const;
|
||||
|
||||
/**
|
||||
* @brief The type of node paramter this is
|
||||
* @brief The type of node parameter this is
|
||||
*
|
||||
* This must be set in subclasses, but most of the time you should probably subclass from NodeInput and NodeOutput
|
||||
* anyway.
|
||||
|
||||
@@ -47,7 +47,7 @@ void ProjectImportManager::Import(Folder *folder, const QFileInfoList &import, i
|
||||
break;
|
||||
}
|
||||
|
||||
// Check if this file is a diretory
|
||||
// Check if this file is a directory
|
||||
if (file_info.isDir()) {
|
||||
|
||||
// QDir::entryList only returns filenames, we can use entryInfoList() to get full paths
|
||||
|
||||
@@ -67,7 +67,7 @@ void RenderBackend::Close()
|
||||
CloseInternal();
|
||||
|
||||
for (int i=0;i<processors_.size();i++) {
|
||||
// Invoke close and quit signals on processor and thred
|
||||
// Invoke close and quit signals on processor and thread
|
||||
QMetaObject::invokeMethod(processors_.at(i),
|
||||
"Close",
|
||||
Qt::QueuedConnection);
|
||||
|
||||
+1
-1
@@ -35,7 +35,7 @@
|
||||
* To subclass your own Task, override Action() and return TRUE on success or FALSE on failure. Note that a Task can
|
||||
* provide a "negative" output and still have succeeded. For example, the ProbeTask's role is to determine whether a
|
||||
* certain media file can be used in Olive. Even if the probe *fails* to find a Decoder for this file, the Task itself
|
||||
* has *suceeded* at discovering this. A failure of ProbeTask would indicate a catastrophic failure meaning it was
|
||||
* has *succeeded* at discovering this. A failure of ProbeTask would indicate a catastrophic failure meaning it was
|
||||
* unable to determine anything about the file.
|
||||
*
|
||||
* Tasks should be used with the TaskManager which will manage starting and deleting them. It'll also only start as
|
||||
|
||||
@@ -21,7 +21,7 @@ CurveView::CurveView(QWidget *parent) :
|
||||
|
||||
CurveView::~CurveView()
|
||||
{
|
||||
// Quick way to avoid segfault when QGraphicsScene::selectionChanged is emitted after other memebers have been destroyed
|
||||
// Quick way to avoid segfault when QGraphicsScene::selectionChanged is emitted after other members have been destroyed
|
||||
Clear();
|
||||
}
|
||||
|
||||
|
||||
@@ -80,7 +80,7 @@ CurveWidget::CurveWidget(QWidget *parent) :
|
||||
|
||||
CurveWidget::~CurveWidget()
|
||||
{
|
||||
// Quick way to avoid segfault when QGraphicsScene::selectionChanged is emitted after other memebers have been destroyed
|
||||
// Quick way to avoid segfault when QGraphicsScene::selectionChanged is emitted after other members have been destroyed
|
||||
view_->Clear();
|
||||
}
|
||||
|
||||
|
||||
@@ -147,7 +147,7 @@ void NodeParamViewItem::SetupUI()
|
||||
NodeParamViewWidgetBridge* bridge = new NodeParamViewWidgetBridge(input, this);
|
||||
bridges_.append(bridge);
|
||||
|
||||
// Add widgets for this parameter ot the layout
|
||||
// Add widgets for this parameter to the layout
|
||||
const QList<QWidget*>& widgets_for_param = bridge->widgets();
|
||||
for (int i=0;i<widgets_for_param.size();i++) {
|
||||
content_layout_->addWidget(widgets_for_param.at(i), row_count, i + 1);
|
||||
|
||||
@@ -49,7 +49,7 @@ public:
|
||||
void SetNode(Node* n);
|
||||
|
||||
/**
|
||||
* @brief Get currently attached noe
|
||||
* @brief Get currently attached node
|
||||
*/
|
||||
Node* node();
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
#include "undo/undocommand.h"
|
||||
|
||||
/**
|
||||
* @brief An undoable commnd for connecting two NodeParams together
|
||||
* @brief An undoable command for connecting two NodeParams together
|
||||
*
|
||||
* Can be considered a QUndoCommand wrapper for NodeParam::ConnectEdge()/
|
||||
*/
|
||||
@@ -31,7 +31,7 @@ private:
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief An undoable commnd for disconnecting two NodeParams
|
||||
* @brief An undoable command for disconnecting two NodeParams
|
||||
*
|
||||
* Can be considered a QUndoCommand wrapper for NodeParam::DisonnectEdge()/
|
||||
*/
|
||||
|
||||
@@ -62,7 +62,7 @@ protected:
|
||||
|
||||
signals:
|
||||
/**
|
||||
* @brief Signal emitted whenever the time changes on this ruler, either by user or programatically
|
||||
* @brief Signal emitted whenever the time changes on this ruler, either by user or programmatically
|
||||
*/
|
||||
void TimeChanged(int64_t);
|
||||
|
||||
|
||||
+2
-2
@@ -3,8 +3,8 @@ image: Visual Studio 2017
|
||||
environment:
|
||||
TRAVIS_REPO_SLUG: olive-editor/olive
|
||||
|
||||
# Hack to not buid the "continuous" tag (https://github.com/appveyor/ci/issues/486)
|
||||
# FIXME: Will unforttunately skip release tags
|
||||
# Hack to not build the "continuous" tag (https://github.com/appveyor/ci/issues/486)
|
||||
# FIXME: Will unfortunately skip release tags
|
||||
skip_tags: true
|
||||
|
||||
install:
|
||||
|
||||
Reference in New Issue
Block a user