diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -89,7 +89,7 @@ * fix crash on audiofiles * fix crash on opening project file with images * fix warnings from static analyzers (cppcheck, krazy) - * sort source files, easier to understand (for new developpers) + * sort source files, easier to understand (for new developers) 0.9.8 Changes: @@ -103,7 +103,7 @@ Bug fix: * Code cleanup (use const ref, fix includes, mem leaks, optimize...) - * Fix warnings from gcc, cppcheck, clang, scan-build: fixes many crashs & leaks + * Fix warnings from gcc, cppcheck, clang, scan-build: fixes many crashes & leaks * Fix keyframing messed up for some effects * Fix timeline corruption when trying to move clip before 0 * Fix crash when closing title widget diff --git a/data/effects/README b/data/effects/README --- a/data/effects/README +++ b/data/effects/README @@ -77,7 +77,7 @@ - represented by a drop-down menu - additional parameter attribute: - "paramlist": list of possible values separated by semicolon (no whitespaces!) - - addtional tag: + - additional tag: - "paramlistdisplay": (optional) list of names to use for the values separated by comma - "position": - time stored as frame number @@ -89,7 +89,7 @@ - "alpha": (default = "0") use to enable alpha support - "keyframe": - keyframable number - - keyframes are opt-in (only one keyframe by default -> should be prefered over "constant" whenever possible) + - keyframes are opt-in (only one keyframe by default -> should be preferred over "constant" whenever possible) - works with MLT filters that utilize start/end values - same attributes as "constant" - additional attributes: @@ -99,7 +99,7 @@ - works with MLT filters that use mlt_geometry for keyframe support (includes all frei0r filters) - same attributes as "keyframe" - "geometry": - - a rectangle: postion + dimension + additional value + - a rectangle: position + dimension + additional value - works with MLT filters using mlt_geometry - the rect can be edited on the project monitor - additional attributes: diff --git a/src/bin/abstractprojectitem.h b/src/bin/abstractprojectitem.h --- a/src/bin/abstractprojectitem.h +++ b/src/bin/abstractprojectitem.h @@ -87,7 +87,7 @@ /** * @brief Removes a child item and notifies the bin model about it (before and after). - * @param child project which sould be removed from the child list + * @param child project which should be removed from the child list * * This function is called when a child's parent is changed through setParent */ diff --git a/src/bin/bin.cpp b/src/bin/bin.cpp --- a/src/bin/bin.cpp +++ b/src/bin/bin.cpp @@ -2827,7 +2827,7 @@ { QStringList folderInfo; if (parent.isValid()) { - // Check if drop occured on a folder + // Check if drop occurred on a folder AbstractProjectItem *parentItem = static_cast(parent.internalPointer()); while (parentItem->itemType() != AbstractProjectItem::FolderItem) { parentItem = parentItem->parent(); @@ -2955,7 +2955,7 @@ } } - // First occurence of a producer, so allocate new bin clip producer ID. + // First occurrence of a producer, so allocate new bin clip producer ID. QString newId = QString::number(getFreeClipId()); idMap.insert(originalId, newId); qCDebug(KDENLIVE_LOG) << "originalId: " << originalId << ", newId: " << newId; diff --git a/src/core.h b/src/core.h --- a/src/core.h +++ b/src/core.h @@ -59,7 +59,7 @@ * @param Url (optional) file to open * @param clipsToLoad (optional) a comma separated list of clips to import in project * - * If Url is present, it will be opened, otherwhise, if openlastproject is + * If Url is present, it will be opened, otherwise, if openlastproject is * set, latest project will be opened. If no file is open after trying this, * a default new file will be created. */ static void build(const QString &MltPath = QString(), const QUrl &Url = QUrl(), const QString &clipsToLoad = QString()); diff --git a/src/dialogs/profilesdialog.h b/src/dialogs/profilesdialog.h --- a/src/dialogs/profilesdialog.h +++ b/src/dialogs/profilesdialog.h @@ -72,7 +72,7 @@ static QString getColorspaceDescription(int colorspace); /** @brief Get the colorspace code (defined by MLT) from a descriptive text - * @param desctiption A string description as defined in getColorspaceDescription(int colorspace) + * @param description A string description as defined in getColorspaceDescription(int colorspace) * @return The int code */ static int getColorspaceFromDescription(const QString &description); diff --git a/src/doc/kdenlivedoc.h b/src/doc/kdenlivedoc.h --- a/src/doc/kdenlivedoc.h +++ b/src/doc/kdenlivedoc.h @@ -226,7 +226,7 @@ /** @brief Sets the document as modified or up to date. * @description If crash recovery is turned on, a timer calls KdenliveDoc::slotAutoSave() \n - * Emits docModified conected to MainWindow::slotUpdateDocumentState \n + * Emits docModified connected to MainWindow::slotUpdateDocumentState \n * @param mod (optional) true if the document has to be saved */ void setModified(bool mod = true); void slotProxyCurrentItem(bool doProxy, QList clipList = QList(), bool force = false, QUndoCommand *masterCommand = nullptr); diff --git a/src/effectstack/widgets/abstractparamwidget.h b/src/effectstack/widgets/abstractparamwidget.h --- a/src/effectstack/widgets/abstractparamwidget.h +++ b/src/effectstack/widgets/abstractparamwidget.h @@ -59,7 +59,7 @@ /** @brief Toggle the comments on or off */ virtual void slotShowComment(bool){ - qDebug()<<"DEBUG: show_comment not correctly overriden"; + qDebug()<<"DEBUG: show_comment not correctly overridden"; } }; diff --git a/src/effectstack/widgets/animationwidget.cpp b/src/effectstack/widgets/animationwidget.cpp --- a/src/effectstack/widgets/animationwidget.cpp +++ b/src/effectstack/widgets/animationwidget.cpp @@ -224,7 +224,7 @@ // Load effect presets loadPresets(); - // If only one animated parametes, hide radiobutton + // If only one animated parameters, hide radiobutton if (m_doubleWidgets.count() == 1) { m_doubleWidgets.first()->hideRadioButton(); } diff --git a/src/effectstack/widgets/boolparamwidget.h b/src/effectstack/widgets/boolparamwidget.h --- a/src/effectstack/widgets/boolparamwidget.h +++ b/src/effectstack/widgets/boolparamwidget.h @@ -38,7 +38,7 @@ /** @brief Constructor for the widgetComment @param name String containing the name of the parameter @param comment Optional string containing the comment associated to the parameter - @param checked Boolean indicating wether the checkbox should initially be checked + @param checked Boolean indicating whether the checkbox should initially be checked @param parent Parent widget */ BoolParamWidget(const QString& name, const QString& comment = QString(), bool checked = false, QWidget *parent = nullptr); diff --git a/src/effectstack/widgets/draggablelabel.cpp b/src/effectstack/widgets/draggablelabel.cpp --- a/src/effectstack/widgets/draggablelabel.cpp +++ b/src/effectstack/widgets/draggablelabel.cpp @@ -45,7 +45,7 @@ void DraggableLabel::mouseReleaseEvent(QMouseEvent *ev) { - // Don't call mouserelease in cas of drag because label might be deleted by a drop + // Don't call mouserelease in case of drag because label might be deleted by a drop if (!m_dragStarted) QLabel::mouseReleaseEvent(ev); else diff --git a/src/jogshuttle/jogaction.cpp b/src/jogshuttle/jogaction.cpp --- a/src/jogshuttle/jogaction.cpp +++ b/src/jogshuttle/jogaction.cpp @@ -70,7 +70,7 @@ void JogShuttleAction::slotButton(int button_id) { if (button_id >= m_actionMap.size() || m_actionMap[button_id].isEmpty()) { - // TODO(fleury): Shoudl this go to the status bar to inform the user ? + // TODO(fleury): Should this go to the status bar to inform the user ? //qCDebug(KDENLIVE_LOG) << "No action applied for button: " << button_id; return; } diff --git a/src/lib/audio/fftCorrelation.cpp b/src/lib/audio/fftCorrelation.cpp --- a/src/lib/audio/fftCorrelation.cpp +++ b/src/lib/audio/fftCorrelation.cpp @@ -123,7 +123,7 @@ correlatedFFT[i].i = leftFFT[i].r * rightFFT[i].i + leftFFT[i].i * rightFFT[i].r; } - // Inverse fourier tranformation to get the convolved data. + // Inverse fourier transformation to get the convolved data. // Insert one element at the beginning to obtain the same result // that we also get with the nested for loop correlation. *out_convolved = 0; diff --git a/src/lib/audio/fftTools.h b/src/lib/audio/fftTools.h --- a/src/lib/audio/fftTools.h +++ b/src/lib/audio/fftTools.h @@ -45,7 +45,7 @@ used as a hash in the cache */ static const QString cfgSignature(const int size); - /** Calculates the Fourier Tranformation of the input audio frame. + /** Calculates the Fourier Transformation of the input audio frame. The resulting values will be given in relative dezibel: The maximum power is 0 dB, lower powers have negative dB values. * audioFrame: Interleaved format with #numChannels channels diff --git a/src/mainwindow.h b/src/mainwindow.h --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -70,7 +70,7 @@ * @param Url (optional) file to open * @param clipsToLoad (optional) a comma separated list of clips to import in project * - * If Url is present, it will be opened, otherwhise, if openlastproject is + * If Url is present, it will be opened, otherwise, if openlastproject is * set, latest project will be opened. If no file is open after trying this, * a default new file will be created. */ void init(const QString &MltPath, const QUrl &Url, const QString &clipsToLoad); diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1760,7 +1760,7 @@ answer = KMessageBox::warningContinueCancel(this, i18n("This will move all temporary files from %1 to %2, the project file will then be reloaded", project->projectTempFolder(), newProjectFolder)); } if (answer == KMessageBox::Continue) { - // Proceeed with move + // Proceed with move QString documentId = QDir::cleanPath(project->getDocumentProperty(QStringLiteral("documentid"))); bool ok; documentId.toLongLong(&ok, 10); diff --git a/src/mltcontroller/clipcontroller.h b/src/mltcontroller/clipcontroller.h --- a/src/mltcontroller/clipcontroller.h +++ b/src/mltcontroller/clipcontroller.h @@ -182,7 +182,7 @@ /** @brief Returns true if audio thumbnails for this clip are cached */ bool audioThumbCreated; Mlt::Profile *profile(); - /** @brief When replacing a producer, it is important that we keep some properties, for exemple force_ stuff and url for proxies + /** @brief When replacing a producer, it is important that we keep some properties, for example force_ stuff and url for proxies * this method returns a list of properties that we want to keep when replacing a producer . */ static const char *getPassPropertiesList(bool passLength = true); /** @brief Disable all Kdenlive effects on this clip */ diff --git a/src/mltcontroller/clipcontroller.cpp b/src/mltcontroller/clipcontroller.cpp --- a/src/mltcontroller/clipcontroller.cpp +++ b/src/mltcontroller/clipcontroller.cpp @@ -271,7 +271,7 @@ if (!m_masterProducer->is_valid()) { qCDebug(KDENLIVE_LOG) << "// WARNING, USING INVALID PRODUCER"; } else { - // URL and name shoule not be updated otherwise when proxying a clip we cannot find back the original url + // URL and name should not be updated otherwise when proxying a clip we cannot find back the original url /*m_url = QUrl::fromLocalFile(m_masterProducer->get("resource")); if (m_url.isValid()) { m_name = m_url.fileName(); diff --git a/src/mltcontroller/producerqueue.h b/src/mltcontroller/producerqueue.h --- a/src/mltcontroller/producerqueue.h +++ b/src/mltcontroller/producerqueue.h @@ -106,7 +106,7 @@ /** @brief A multiple stream clip was found. */ void multiStreamFound(const QString &, QList, QList, stringMap data); void addClip(const QString &, const QMap &); - /** @brief A clip changed whithout need to replace produder (for example clip), just ask refresh. */ + /** @brief A clip changed without need to replace produder (for example clip), just ask refresh. */ void refreshTimelineProducer(const QString); }; diff --git a/src/monitor/glwidget.cpp b/src/monitor/glwidget.cpp --- a/src/monitor/glwidget.cpp +++ b/src/monitor/glwidget.cpp @@ -885,7 +885,7 @@ } } if (m_consumer->is_valid()) { - // buid sub consumers + // build sub consumers //m_consumer->set("mlt_image_format", "yuv422"); reloadProfile(*profile); int volume = KdenliveSettings::volume(); diff --git a/src/monitor/monitormanager.h b/src/monitor/monitormanager.h --- a/src/monitor/monitormanager.h +++ b/src/monitor/monitormanager.h @@ -140,7 +140,7 @@ void addEffect(const QDomElement &); /** @brief Monitor activated, refresh overlay options actions */ void updateOverlayInfos(int, int); - /** @brief info is available for audio spectum widget */ + /** @brief info is available for audio spectrum widget */ void frameDisplayed(const SharedFrame &); }; diff --git a/src/monitor/recmonitor.h b/src/monitor/recmonitor.h --- a/src/monitor/recmonitor.h +++ b/src/monitor/recmonitor.h @@ -22,7 +22,7 @@ * @brief Records video via dvgrab (firewire), ffmpeg=video4linux and screen capture also via ffmpeg * @author Jean-Baptiste Mardelle * Recording is started by RecMonitor::slotRecord () -* Recording stoped in RecMonitor::slotStopCapture () +* Recording stopped in RecMonitor::slotStopCapture () */ #ifndef RECMONITOR_H diff --git a/src/monitor/recmonitor.cpp b/src/monitor/recmonitor.cpp --- a/src/monitor/recmonitor.cpp +++ b/src/monitor/recmonitor.cpp @@ -598,7 +598,7 @@ video_frame->clear();// clear error text from previous run if any. // ^^ This does clear the error text but the change is not visible straight way in the UI // it only becomes visible after the capture is complete. Vincent and JBM - how come? What can - // we do to make the error text go way as soon as a new capture starts. It is missleading to the user + // we do to make the error text go way as soon as a new capture starts. It is misleading to the user // to have the error still display while we are happily capturing. if (m_captureProcess->state() == QProcess::NotRunning && device_selector->currentIndex() == Firewire) { slotStartPreview(); diff --git a/src/onmonitoritems/rotoscoping/nearestpoint.cpp b/src/onmonitoritems/rotoscoping/nearestpoint.cpp --- a/src/onmonitoritems/rotoscoping/nearestpoint.cpp +++ b/src/onmonitoritems/rotoscoping/nearestpoint.cpp @@ -281,7 +281,7 @@ */ static int CrossingCount(Point2 *V, int degree) // Point2 *V; /* Control pts of Bezier curve */ -// int degree; /* Degreee of Bezier curve */ +// int degree; /* Degree of Bezier curve */ { int i; int n_crossings = 0; /* Number of zero-crossings */ diff --git a/src/onmonitoritems/rotoscoping/rotowidget.h b/src/onmonitoritems/rotoscoping/rotowidget.h --- a/src/onmonitoritems/rotoscoping/rotowidget.h +++ b/src/onmonitoritems/rotoscoping/rotowidget.h @@ -73,7 +73,7 @@ /** @brief Returns the list of cubic Bézier points that form the spline at position @param keyframe. * The points are brought from the range [0, 1] into project resolution space. - * This function does not do any interpolation and therfore will only return a list when a keyframe at the given postion exists. + * This function does not do any interpolation and therefore will only return a list when a keyframe at the given position exists. * Set @param keyframe to -1 if only one keyframe currently exists. */ QList getPoints(int keyframe); diff --git a/src/project/clipstabilize.cpp b/src/project/clipstabilize.cpp --- a/src/project/clipstabilize.cpp +++ b/src/project/clipstabilize.cpp @@ -68,7 +68,7 @@ << QStringLiteral("maxangle,type,double,value,-1,min,-1,max,3.14,decimals,2,tooltip,max angle to rotate (in rad)") << QStringLiteral("crop,type,bool,value,0,min,0,max,1,tooltip,0 = keep border 1 = black background") << QStringLiteral("zoom,type,int,value,0,min,-500,max,500,tooltip,additional zoom during transform") - << QStringLiteral("optzoom,type,bool,value,1,min,0,max,1,tooltip,use optimal zoom (calulated from transforms)") + << QStringLiteral("optzoom,type,bool,value,1,min,0,max,1,tooltip,use optimal zoom (calculated from transforms)") << QStringLiteral("sharpen,type,double,value,0.8,min,0,max,1,decimals,1,tooltip,sharpen transformed image") << QStringLiteral("tripod,type,position,value,0,min,0,max,100000,tooltip,reference frame")); } else if (m_filtername == QLatin1String("videostab")) { diff --git a/src/project/jobs/proxyclipjob.cpp b/src/project/jobs/proxyclipjob.cpp --- a/src/project/jobs/proxyclipjob.cpp +++ b/src/project/jobs/proxyclipjob.cpp @@ -99,7 +99,7 @@ mltParameters.append(QStringLiteral("real_time=-%1").arg(KdenliveSettings::mltthreads())); - //TODO: currently, when rendering an xml file through melt, the display ration is lost, so we enforce it manualy + //TODO: currently, when rendering an xml file through melt, the display ration is lost, so we enforce it manually mltParameters << QStringLiteral("aspect=") + QLocale().toString(display_ratio); // Ask for progress reporting diff --git a/src/qt-oauth-lib/logindialog.h b/src/qt-oauth-lib/logindialog.h --- a/src/qt-oauth-lib/logindialog.h +++ b/src/qt-oauth-lib/logindialog.h @@ -51,7 +51,7 @@ \details It contains a QWebView object to display the freesound web page. I did try using a QTextBrowser for this purpose but it responds to the URL that is used to connect with "No document for https://www.freesound.org/apiv2/oauth2/authorize/?client_id=3duhagdr874c&redirect_uri=https://www.freesound.org/home/app_permissions/permission_granted/&response_type=code" - The use of QWebView adds a dependancy on the KF5WebKit to kdenlive. Need install libkf5webkit5-dev package on ubuntu + The use of QWebView adds a dependency on the KF5WebKit to kdenlive. Need install libkf5webkit5-dev package on ubuntu */ class LoginDialog : public QDialog { @@ -71,7 +71,7 @@ */ void authCodeObtained(); /** - * @brief accessDenied -signal emmited if freesound denies access - eg bad password or user has denied access to Kdenlive app. + * @brief accessDenied -signal emitted if freesound denies access - eg bad password or user has denied access to Kdenlive app. */ void accessDenied(); /** @@ -79,7 +79,7 @@ */ void canceled(); /** - * @brief useHQPreview - signal emmited when user clicks the "use HQ preview" button in the logon dialog + * @brief useHQPreview - signal emitted when user clicks the "use HQ preview" button in the logon dialog */ void useHQPreview(); diff --git a/src/qt-oauth-lib/logindialog.cpp b/src/qt-oauth-lib/logindialog.cpp --- a/src/qt-oauth-lib/logindialog.cpp +++ b/src/qt-oauth-lib/logindialog.cpp @@ -75,7 +75,7 @@ /** * @brief LoginDialog::urlChanged * @param url \n - * If we succesfully get a Auth code in our URL we extract the code here and emit LoginDialog::AuthCodeObtained signal + * If we successfully get a Auth code in our URL we extract the code here and emit LoginDialog::AuthCodeObtained signal * http://www.freesound.org/docs/api/authentication.html#oauth2-authentication */ void LoginDialog::urlChanged(const QUrl &url) diff --git a/src/qt-oauth-lib/oauth2.h b/src/qt-oauth-lib/oauth2.h --- a/src/qt-oauth-lib/oauth2.h +++ b/src/qt-oauth-lib/oauth2.h @@ -43,7 +43,7 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS static QString OAuth2_strClientSecret = QStringLiteral("441d88374716e7a3503997151e4780566f007313"); //obtained when ttguy registered the kdenlive application with freesound -#endif /* DOXYGEN_SHOULD_SKIP_THIS ^^^ don't make this any more public than it is. This preprocessing directive makes the Doxygen documention ignore this line */ +#endif /* DOXYGEN_SHOULD_SKIP_THIS ^^^ don't make this any more public than it is. This preprocessing directive makes the Doxygen documentation ignore this line */ #ifdef QT5_USE_WEBKIT @@ -51,7 +51,7 @@ /** \brief This object does oAuth2 authentication on the freesound web site. \n -Instansiated by ResourceWidget constructor. \n +Instantiated by ResourceWidget constructor. \n Freesounds OAuth2 authentication API is documented here http://www.freesound.org/docs/api/authentication.html#oauth2-authentication */ class OAuth2 : public QObject diff --git a/src/qt-oauth-lib/oauth2.cpp b/src/qt-oauth-lib/oauth2.cpp --- a/src/qt-oauth-lib/oauth2.cpp +++ b/src/qt-oauth-lib/oauth2.cpp @@ -86,7 +86,7 @@ /** * @brief OAuth2::getClientID - returns QString of the "clientID" * @return QString of the "clientID" which is a string that identifies the Kdenlive - * applicaiton to the freesound website when the request for authentication is made + * application to the freesound website when the request for authentication is made */ QString OAuth2::getClientID() const { @@ -95,7 +95,7 @@ /** * @brief OAuth2::getClientSecret - returns QString of the "client secret" * @return - QString of the "client secret" which is another string that identifies the Kdenlive - * applicaiton to the freesound website when the application asks for an access token + * application to the freesound website when the application asks for an access token */ QString OAuth2::getClientSecret() const { @@ -212,7 +212,7 @@ * @brief OAuth2::serviceRequestFinished - Fires when we finish downloading the access token. * This is the slot that is notified when OAuth2::SlotAuthCodeObtained has finished downloading the access token. * It parses the result to extract out the access_token, refresh_token and expires_in values. If it - * extracts the access token sucessfully if fires the OAuth2::accessTokenReceived signal + * extracts the access token successfully if fires the OAuth2::accessTokenReceived signal * which is picked up by ResourceWidget::slotAccessTokenReceived * @param reply diff --git a/src/timecodedisplay.h b/src/timecodedisplay.h --- a/src/timecodedisplay.h +++ b/src/timecodedisplay.h @@ -70,7 +70,7 @@ /** @brief Returns the current input as a GenTime object. */ GenTime gentime() const; - /** @brief Returs the widget's timecode object. */ + /** @brief Returns the widget's timecode object. */ Timecode timecode() const; /** @brief Sets value's format to frames or HH:MM:SS:FF according to @param frametimecode. diff --git a/src/timeline/track.h b/src/timeline/track.h --- a/src/timeline/track.h +++ b/src/timeline/track.h @@ -39,7 +39,7 @@ * When one adds, deletes, moves and resizes clips on the track, * it corresponds to playlist operations, simple or elaborate. * The Track class handles the edit time to MLT frame & index - * correspondance, and builds complex operations on top of basic + * correspondence, and builds complex operations on top of basic * commands. */ @@ -87,7 +87,7 @@ /** @brief The track header widget */ HeaderTrack *trackHeader; - /** @brief convertion utility function + /** @brief conversion utility function * @param time (in seconds) * @return frame number */ int frame(qreal t); diff --git a/src/timeline/tracksconfigdialog.h b/src/timeline/tracksconfigdialog.h --- a/src/timeline/tracksconfigdialog.h +++ b/src/timeline/tracksconfigdialog.h @@ -59,7 +59,7 @@ /** @brief Returns the new list of tracks created from the table. */ const QList tracksList(); - /** @brief A list of tracks, which sould be deleted. */ + /** @brief A list of tracks, which should be deleted. */ QList deletedTracks() const; private slots: diff --git a/src/timeline/transitionhandler.cpp b/src/timeline/transitionhandler.cpp --- a/src/timeline/transitionhandler.cpp +++ b/src/timeline/transitionhandler.cpp @@ -511,7 +511,7 @@ { int tracks = m_tractor->count(); if (tracks < 3) { - // we need at leas 3 tracks (black bg track + 2 tracks to use this) + // we need at least 3 tracks (black bg track + 2 tracks to use this) return; } QStringList compositeService { QStringLiteral("qtblend"), QStringLiteral("frei0r.cairoblend"), QStringLiteral("movit.overlay") }; diff --git a/src/titler/gradientwidget.h b/src/titler/gradientwidget.h --- a/src/titler/gradientwidget.h +++ b/src/titler/gradientwidget.h @@ -28,7 +28,7 @@ /*! \class GradientWidget \brief Title creation dialog - Instances of TitleWidget classes are instansiated by KdenliveDoc::slotCreateTextClip () + Instances of TitleWidget classes are instantiated by KdenliveDoc::slotCreateTextClip () */ class GradientWidget : public QDialog, public Ui::GradientEdit_UI { diff --git a/src/titler/titlewidget.h b/src/titler/titlewidget.h --- a/src/titler/titlewidget.h +++ b/src/titler/titlewidget.h @@ -54,7 +54,7 @@ /*! \class TitleWidget \brief Title creation dialog - Instances of TitleWidget classes are instansiated by KdenliveDoc::slotCreateTextClip () + Instances of TitleWidget classes are instantiated by KdenliveDoc::slotCreateTextClip () */ class TitleWidget : public QDialog, public Ui::TitleWidget_UI { @@ -285,7 +285,7 @@ void slotChanged(); /** - * Reacts to changes of widht/height/x/y QSpinBox values. + * Reacts to changes of width/height/x/y QSpinBox values. * @brief Updates width, height, and position of the selected items. * @param valueType of type ValueType */ diff --git a/src/utils/freesound.cpp b/src/utils/freesound.cpp --- a/src/utils/freesound.cpp +++ b/src/utils/freesound.cpp @@ -85,7 +85,7 @@ if (job->error() != 0) { qCDebug(KDENLIVE_LOG) << job->errorString(); } else { - m_listWidget->blockSignals(true);// stop the listWidget from emiting signals.Ie clicking on the list while we are busy here will do nothing + m_listWidget->blockSignals(true);// stop the listWidget from emitting signals.Ie clicking on the list while we are busy here will do nothing KIO::StoredTransferJob *storedQueryJob = static_cast(job); QJsonParseError jsonError; diff --git a/src/utils/resourcewidget.h b/src/utils/resourcewidget.h --- a/src/utils/resourcewidget.h +++ b/src/utils/resourcewidget.h @@ -38,9 +38,9 @@ /** \brief This is the window that appears from Project>Online Resources - * In the Online Resources window the user can choose from different online resouces such as Freesound Audio Library, Archive.org Video + * In the Online Resources window the user can choose from different online resources such as Freesound Audio Library, Archive.org Video * Library and Open clip Art Graphic Library. - * Depending on which of these is selected the resourcewidget will instansiate a FreeSound, ArchiveOrg or OpenClipArt + * Depending on which of these is selected the resourcewidget will instantiate a FreeSound, ArchiveOrg or OpenClipArt * class that will deal with the searching and parsing of the results for the different on line resource libraries */ diff --git a/src/utils/resourcewidget.cpp b/src/utils/resourcewidget.cpp --- a/src/utils/resourcewidget.cpp +++ b/src/utils/resourcewidget.cpp @@ -516,7 +516,7 @@ new KRun(QUrl(url), this); } /** - * @brief ResourceWidget::slotChangeService - fires when user changes what online resource they want to search agains via the dropdown list + * @brief ResourceWidget::slotChangeService - fires when user changes what online resource they want to search against via the dropdown list Also fires when widget first opens */ @@ -693,7 +693,7 @@ GifLabel->setPixmap(pic);// pass a pointer as a parameter. Display the pic in our lable } -/** @brief updates the display with infomation on the seleted item. The title consists of the sounds file name and the author +/** @brief updates the display with information on the seleted item. The title consists of the sounds file name and the author * * Called by ResourceWidget::slotUpdateCurrentSound() */ @@ -781,7 +781,7 @@ /** * @brief ResourceWidget::GetSaveFileNameAndPathS * @param path - starting path where dialog will open on - * @param ext - file exension filter to have in play on the dialog + * @param ext - file extension filter to have in play on the dialog * @return QString of the chosen path * Prompts user to choose a file name and path as to where to save a file. * Returns a QString of the path and file name or empty string if user cancels @@ -820,12 +820,12 @@ * @brief ResourceWidget::DownloadRequestFinished * @param reply * Fires when the download of the freesound file completes. - * If the download was successfull this saves the data from memory to the file system. Emits an ResourceWidget::addClip signal. + * If the download was successful this saves the data from memory to the file system. Emits an ResourceWidget::addClip signal. * MainWindow::slotDownloadResources() links this signal to MainWindow::slotAddProjectClip * If the download has failed with AuthenticationRequiredError then it requests a new access token via the refresh token method * and then the download process will retry. * If the download fails for other reasons this reports an error and clears out the access token from memory. - * If the user requests the file import again it will request a login to free sound again and the download might suceed on this second try + * If the user requests the file import again it will request a login to free sound again and the download might succeed on this second try */ void ResourceWidget::DownloadRequestFinished(QNetworkReply *reply) {