Misc. typos

Found via ` codespell -q 3 -S *.ts,*.xml -L ba,froms,seeked`
This commit is contained in:
luz.paz
2019-04-24 11:34:56 -04:00
parent c5f63ec2c5
commit 52d03aacd6
15 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ public:
public slots:
/**
* @brief Overrided accept for saving the UI data into the provided VideoCodecParams struct.
* @brief Overridden accept for saving the UI data into the provided VideoCodecParams struct.
*/
virtual void accept() override;
private:
+1 -1
View File
@@ -84,7 +84,7 @@ private:
QCheckBox* premultiply_alpha_setting;
private slots:
/**
* @brief Overrided accept function for saving the properties back to the Media class
* @brief Overridden accept function for saving the properties back to the Media class
*/
void accept();
};
+1 -1
View File
@@ -479,7 +479,7 @@ void PreferencesDialog::delete_all_previews() {
delete_previews(1);
QMessageBox::information(this,
tr("Previews Deleted"),
tr("All previews deleted succesfully. You may have to re-open your current project for changes to take effect."),
tr("All previews deleted successfully. You may have to re-open your current project for changes to take effect."),
QMessageBox::Ok);
}
}
+1 -1
View File
@@ -51,7 +51,7 @@ public:
ReplaceClipMediaDialog(QWidget* parent, Media* old_media);
private slots:
/**
* @brief Overrided accept for when the user clicks "Replace"
* @brief Overridden accept for when the user clicks "Replace"
*
* Checks whether the requested replace is valid using the following criteria:
* * Any Media is selected
+1 -1
View File
@@ -33,7 +33,7 @@
* A dialog for setting the speed of one or more Clips. This can be run from anywhere provided it's given a valid
* array of Clips.
*
* It's preferable ot
* It's preferable to
*/
class SpeedDialog : public QDialog
{
+1 -1
View File
@@ -85,7 +85,7 @@ private slots:
*
* The current index of the QWidget (QComboBox in this case). Automatically set when this slot is connected
* to the QComboBox::currentIndexChanged() signal. This is the only time ComboFields deal with indices since the
* QComboBox's indices will match precisely to the items_ array. Outside of this function, QVariant data is prefered.
* QComboBox's indices will match precisely to the items_ array. Outside of this function, QVariant data is preferred.
*/
void UpdateFromWidget(int index);
};
+1 -1
View File
@@ -2,7 +2,7 @@
(c) 2008 Edward Cannon (adapted to GLSL by Olive Team)
feel free to use or modify at will*/
/*the follwing three functions convert RGB into YCbCr in the same manner as in JPEG images*/
/*the following three functions convert RGB into YCbCr in the same manner as in JPEG images*/
uniform sampler2D tex;
varying vec2 vTexCoord;
+1 -1
View File
@@ -213,7 +213,7 @@ public slots:
*
* @param index
*
* Index in the list of the project fille to load
* Index in the list of the project file to load
*/
void open_recent(int index);
+1 -1
View File
@@ -887,7 +887,7 @@ void Cacher::OpenWorker() {
// opens file resource for FFmpeg and prepares Clip struct for playback
Footage* m = clip->media()->to_footage();
// byte array for retriving raw bytes from QString URL
// byte array for retrieving raw bytes from QString URL
QByteArray ba;
// do we have a proxy?
+1 -1
View File
@@ -275,7 +275,7 @@ bool ExportThread::SetupAudio() {
return false;
}
// Copy paramters from the codec context (set up above) to the output stream
// Copy parameters from the codec context (set up above) to the output stream
ret = avcodec_parameters_from_context(audio_stream->codecpar, acodec_ctx);
if (ret < 0) {
qCritical() << "Could not copy audio encoder parameters to output stream." << ret;
+1 -1
View File
@@ -551,7 +551,7 @@ bool Clip::Retrieve()
// Wait for exclusive control of the queue to avoid any threading collisions
cacher.queue()->lock();
// Check if we retrieved a frame (nullptr) and if the queue stil contains this frame.
// Check if we retrieved a frame (nullptr) and if the queue still contains this frame.
//
// `nullptr` is returned if the cacher failed to get any sort of frame and is uncommon, but we do need
// to handle it.
+1 -1
View File
@@ -153,7 +153,7 @@ void EffectUI::AddAdditionalEffect(Effect *e)
// Ensure this is the same kind of effect and will be fully compatible
Q_ASSERT(e->meta == effect_->meta);
// Add multiple modifer to header label (but only once)
// Add 'multiple' modifier to header label (but only once)
if (additional_effects_.isEmpty()) {
QString new_title = tr("%1 (multiple)").arg(Title());
+1 -1
View File
@@ -48,7 +48,7 @@ public:
*
* @return
*
* The Effect object passed to the constrcutor whe creating this EffectUI.
* The Effect object passed to the constructor when creating this EffectUI.
*/
Effect* GetEffect();
+1 -1
View File
@@ -82,7 +82,7 @@ public:
* * `LABELSLIDER_FRAMENUMBER` - Shows the number as a timecode according to `config.timecode_view`. By default,
* will render hh:mm:ss:ff
* * `LABELSLIDER_PERCENT` - Shows the number as a percentage. 1.0 becomes "100%", 0.5 becomes 50%, etc.
* * `LABELSLIDER_DECIBLE` - Shows the number as a decibel. 1.0 becomes "0 dB", 2.0 becames roughly "6 dB", 0.5
* * `LABELSLIDER_DECIBLE` - Shows the number as a decibel. 1.0 becomes "0 dB", 2.0 becomes roughly "6 dB", 0.5
* becomes roughly "-6 dB", etc.
*
* @param type
+1 -1
View File
@@ -2093,7 +2093,7 @@ void TimelineWidget::mouseMoveEvent(QMouseEvent *event) {
if (!(link->track() >= minimum_selection_track
&& link->track() <= maximum_selection_track)) {
// clip is not in selectin area, time to select it
// clip is not in selection area, time to select it
Selection link_sel;
link_sel.in = selection_in;
link_sel.out = selection_out;