From 5d4746e4c3e8665de83e6d281dcd08a46cd22c31 Mon Sep 17 00:00:00 2001 From: Montel Laurent Date: Sun, 15 Dec 2013 15:59:10 +0100 Subject: [PATCH] Use KLocalizedString (for i18n only, in kf5 it will necessary => use a script for converting it when necessary) --- src/abstractclipitem.cpp | 2 +- src/archivewidget.cpp | 2 +- src/beziercurve/beziersplinewidget.cpp | 2 +- src/commands/addclipcommand.cpp | 2 +- src/commands/addclipcutcommand.cpp | 2 +- src/commands/addeffectcommand.cpp | 2 +- src/commands/addextradatacommand.cpp | 2 +- src/commands/addfoldercommand.cpp | 2 +- src/commands/addmarkercommand.cpp | 2 +- src/commands/addtimelineclipcommand.cpp | 2 +- src/commands/addtrackcommand.cpp | 2 +- src/commands/addtransitioncommand.cpp | 2 +- src/commands/changecliptypecommand.cpp | 2 +- src/commands/changeeffectstatecommand.cpp | 2 +- src/commands/changespeedcommand.cpp | 2 +- src/commands/editclipcommand.cpp | 2 +- src/commands/editclipcutcommand.cpp | 2 +- src/commands/editeffectcommand.cpp | 2 +- src/commands/editfoldercommand.cpp | 2 +- src/commands/editguidecommand.cpp | 2 +- src/commands/editkeyframecommand.cpp | 2 +- src/commands/edittransitioncommand.cpp | 2 +- src/commands/groupclipscommand.cpp | 2 +- src/commands/insertspacecommand.cpp | 2 +- src/commands/locktrackcommand.cpp | 2 +- src/commands/moveclipcommand.cpp | 2 +- src/commands/moveeffectcommand.cpp | 2 +- src/commands/movegroupcommand.cpp | 2 +- src/commands/movetransitioncommand.cpp | 2 +- src/commands/razorclipcommand.cpp | 2 +- src/commands/resizeclipcommand.cpp | 2 +- src/commands/splitaudiocommand.cpp | 2 +- src/complexparameter.cpp | 2 +- src/customtrackview.cpp | 2 +- src/definitions.h | 2 +- src/documentvalidator.cpp | 2 +- src/dvdwizard.cpp | 2 +- src/effectslist.cpp | 2 +- src/effectslistview.cpp | 2 +- src/effectstack/collapsibleeffect.cpp | 2 +- src/effectstack/collapsiblegroup.cpp | 2 +- src/effectstack/effectstackview2.cpp | 2 +- src/effectstackedit.cpp | 2 +- src/folderprojectitem.cpp | 2 +- src/headertrack.cpp | 2 +- src/kdenlivedoc.cpp | 2 +- src/mainwindow.cpp | 2 +- src/mltdevicecapture.cpp | 2 +- src/monitor.cpp | 2 +- src/noteswidget.cpp | 2 +- src/projectitem.cpp | 2 +- src/projectlist.cpp | 2 +- src/projectlistview.cpp | 2 +- src/projecttree/abstractclipjob.cpp | 2 +- src/projecttree/cutclipjob.cpp | 2 +- src/projecttree/meltjob.cpp | 2 +- src/projecttree/proxyclipjob.cpp | 2 +- src/recmonitor.cpp | 2 +- src/renderer.cpp | 2 +- src/scopes/abstractscopewidget.cpp | 1 + src/simplekeyframes/simplekeyframewidget.cpp | 2 +- src/smallruler.cpp | 2 +- src/stopmotion/capturehandler.cpp | 2 +- src/subprojectitem.cpp | 2 +- src/timecode.cpp | 2 +- src/titledocument.cpp | 2 +- src/utils/archiveorg.cpp | 2 +- src/utils/freesound.cpp | 2 +- src/v4l/v4lcapture.cpp | 2 +- src/wizard.cpp | 2 +- 70 files changed, 70 insertions(+), 69 deletions(-) diff --git a/src/abstractclipitem.cpp b/src/abstractclipitem.cpp index a616219c..7ef051b2 100644 --- a/src/abstractclipitem.cpp +++ b/src/abstractclipitem.cpp @@ -23,7 +23,7 @@ #include "kdenlivesettings.h" #include -#include +#include #include #include diff --git a/src/archivewidget.cpp b/src/archivewidget.cpp index a645172e..ae19130b 100644 --- a/src/archivewidget.cpp +++ b/src/archivewidget.cpp @@ -21,7 +21,7 @@ #include "archivewidget.h" #include "titlewidget.h" -#include +#include #include #include #include diff --git a/src/beziercurve/beziersplinewidget.cpp b/src/beziercurve/beziersplinewidget.cpp index f61e65f9..6f7683f8 100644 --- a/src/beziercurve/beziersplinewidget.cpp +++ b/src/beziercurve/beziersplinewidget.cpp @@ -24,7 +24,7 @@ #include #include -#include +#include BezierSplineWidget::BezierSplineWidget(const QString& spline, QWidget* parent) : diff --git a/src/commands/addclipcommand.cpp b/src/commands/addclipcommand.cpp index d8cc2e48..5ffd45ce 100644 --- a/src/commands/addclipcommand.cpp +++ b/src/commands/addclipcommand.cpp @@ -21,7 +21,7 @@ #include "addclipcommand.h" #include "kdenlivedoc.h" -#include +#include AddClipCommand::AddClipCommand(KdenliveDoc *doc, const QDomElement &xml, const QString &id, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/addclipcutcommand.cpp b/src/commands/addclipcutcommand.cpp index 6faec763..bb4143f2 100644 --- a/src/commands/addclipcutcommand.cpp +++ b/src/commands/addclipcutcommand.cpp @@ -20,7 +20,7 @@ #include "addclipcutcommand.h" #include "projectlist.h" -#include +#include AddClipCutCommand::AddClipCutCommand(ProjectList *list, const QString &id, int in, int out, const QString& desc, bool newItem, bool remove, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/addeffectcommand.cpp b/src/commands/addeffectcommand.cpp index 399ec59f..8df25a9a 100644 --- a/src/commands/addeffectcommand.cpp +++ b/src/commands/addeffectcommand.cpp @@ -21,7 +21,7 @@ #include "addeffectcommand.h" #include "customtrackview.h" -#include +#include AddEffectCommand::AddEffectCommand(CustomTrackView *view, const int track, const GenTime &pos, const QDomElement &effect, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/addextradatacommand.cpp b/src/commands/addextradatacommand.cpp index f2aa5411..1b5aea2d 100644 --- a/src/commands/addextradatacommand.cpp +++ b/src/commands/addextradatacommand.cpp @@ -19,7 +19,7 @@ #include "addextradatacommand.h" #include "customtrackview.h" -#include +#include AddExtraDataCommand::AddExtraDataCommand(CustomTrackView *view, const QString&id, const QString&key, const QString &oldData, const QString &newData, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/addfoldercommand.cpp b/src/commands/addfoldercommand.cpp index 3f5c562f..4a7cb2a4 100644 --- a/src/commands/addfoldercommand.cpp +++ b/src/commands/addfoldercommand.cpp @@ -21,7 +21,7 @@ #include "addfoldercommand.h" #include "projectlist.h" -#include +#include AddFolderCommand::AddFolderCommand(ProjectList *view, const QString &folderName, const QString &clipId, bool doIt, QUndoCommand *parent) : QUndoCommand(parent), diff --git a/src/commands/addmarkercommand.cpp b/src/commands/addmarkercommand.cpp index 46a7d9c1..5070ca6a 100644 --- a/src/commands/addmarkercommand.cpp +++ b/src/commands/addmarkercommand.cpp @@ -19,7 +19,7 @@ #include "addmarkercommand.h" #include "customtrackview.h" -#include +#include AddMarkerCommand::AddMarkerCommand(CustomTrackView *view, const CommentedTime &oldMarker, const CommentedTime &newMarker, const QString &id, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/addtimelineclipcommand.cpp b/src/commands/addtimelineclipcommand.cpp index 5cc0fe70..4cd39a7a 100644 --- a/src/commands/addtimelineclipcommand.cpp +++ b/src/commands/addtimelineclipcommand.cpp @@ -21,7 +21,7 @@ #include "addtimelineclipcommand.h" #include "customtrackview.h" -#include +#include AddTimelineClipCommand::AddTimelineClipCommand(CustomTrackView *view, const QDomElement &xml, const QString &clipId, const ItemInfo &info, const EffectsList &effects, bool overwrite, bool push, bool doIt, bool doRemove, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/addtrackcommand.cpp b/src/commands/addtrackcommand.cpp index f36d220c..d7db0adb 100644 --- a/src/commands/addtrackcommand.cpp +++ b/src/commands/addtrackcommand.cpp @@ -21,7 +21,7 @@ #include "addtrackcommand.h" #include "customtrackview.h" -#include +#include #include AddTrackCommand::AddTrackCommand(CustomTrackView *view, int ix, const TrackInfo &info, bool addTrack, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/addtransitioncommand.cpp b/src/commands/addtransitioncommand.cpp index 8a8002f2..ead49b62 100644 --- a/src/commands/addtransitioncommand.cpp +++ b/src/commands/addtransitioncommand.cpp @@ -19,7 +19,7 @@ #include "addtransitioncommand.h" #include "customtrackview.h" -#include +#include AddTransitionCommand::AddTransitionCommand(CustomTrackView *view, const ItemInfo &info, int transitiontrack, const QDomElement ¶ms, bool remove, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/changecliptypecommand.cpp b/src/commands/changecliptypecommand.cpp index 61932cca..b5aa2fc2 100644 --- a/src/commands/changecliptypecommand.cpp +++ b/src/commands/changecliptypecommand.cpp @@ -21,7 +21,7 @@ #include "changecliptypecommand.h" #include "customtrackview.h" -#include +#include #include ChangeClipTypeCommand::ChangeClipTypeCommand(CustomTrackView *view, const int track, const GenTime &pos, bool videoOnly, bool audioOnly, bool originalVideo, bool originalAudio, QUndoCommand * parent) : diff --git a/src/commands/changeeffectstatecommand.cpp b/src/commands/changeeffectstatecommand.cpp index adf7884a..2d1deff5 100644 --- a/src/commands/changeeffectstatecommand.cpp +++ b/src/commands/changeeffectstatecommand.cpp @@ -21,7 +21,7 @@ #include "changeeffectstatecommand.h" #include "customtrackview.h" -#include +#include ChangeEffectStateCommand::ChangeEffectStateCommand(CustomTrackView *view, const int track, const GenTime& pos, const QList & effectIndexes, bool disable, bool refreshEffectStack, bool doIt, QUndoCommand *parent) : QUndoCommand(parent), diff --git a/src/commands/changespeedcommand.cpp b/src/commands/changespeedcommand.cpp index 67399a91..7ada3e06 100644 --- a/src/commands/changespeedcommand.cpp +++ b/src/commands/changespeedcommand.cpp @@ -21,7 +21,7 @@ #include "changespeedcommand.h" #include "customtrackview.h" -#include +#include ChangeSpeedCommand::ChangeSpeedCommand(CustomTrackView *view, const ItemInfo &info, const ItemInfo &speedIndependantInfo, double old_speed, double new_speed, int old_strobe, int new_strobe, const QString &clipId, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/editclipcommand.cpp b/src/commands/editclipcommand.cpp index 96c35b9a..00686b54 100644 --- a/src/commands/editclipcommand.cpp +++ b/src/commands/editclipcommand.cpp @@ -20,7 +20,7 @@ #include "editclipcommand.h" #include "projectlist.h" -#include +#include #include EditClipCommand::EditClipCommand(ProjectList *list, const QString &id, const QMap &oldparams, const QMap &newparams, bool doIt, QUndoCommand * parent) : diff --git a/src/commands/editclipcutcommand.cpp b/src/commands/editclipcutcommand.cpp index 7bdfc53b..a5e7df7d 100644 --- a/src/commands/editclipcutcommand.cpp +++ b/src/commands/editclipcutcommand.cpp @@ -20,7 +20,7 @@ #include "editclipcutcommand.h" #include "projectlist.h" -#include +#include #include EditClipCutCommand::EditClipCutCommand(ProjectList *list, const QString &id, const QPoint &oldZone, const QPoint &newZone, const QString &oldComment, const QString &newComment, bool doIt, QUndoCommand * parent) : diff --git a/src/commands/editeffectcommand.cpp b/src/commands/editeffectcommand.cpp index 3fb2a33d..e6ab0a35 100644 --- a/src/commands/editeffectcommand.cpp +++ b/src/commands/editeffectcommand.cpp @@ -21,7 +21,7 @@ #include "editeffectcommand.h" #include "customtrackview.h" #include -#include +#include EditEffectCommand::EditEffectCommand(CustomTrackView *view, const int track, const GenTime &pos, const QDomElement &oldeffect, const QDomElement &effect, int stackPos, bool refreshEffectStack, bool doIt, QUndoCommand *parent) : QUndoCommand(parent), diff --git a/src/commands/editfoldercommand.cpp b/src/commands/editfoldercommand.cpp index 1b569f16..cb7bc048 100644 --- a/src/commands/editfoldercommand.cpp +++ b/src/commands/editfoldercommand.cpp @@ -21,7 +21,7 @@ #include "editfoldercommand.h" #include "projectlist.h" -#include +#include EditFolderCommand::EditFolderCommand(ProjectList *view, const QString &newfolderName, const QString &oldfolderName, const QString &clipId, bool doIt, QUndoCommand *parent) : QUndoCommand(parent), diff --git a/src/commands/editguidecommand.cpp b/src/commands/editguidecommand.cpp index 0f5ece09..0e80bce2 100644 --- a/src/commands/editguidecommand.cpp +++ b/src/commands/editguidecommand.cpp @@ -19,7 +19,7 @@ #include "editguidecommand.h" #include "customtrackview.h" -#include +#include EditGuideCommand::EditGuideCommand(CustomTrackView *view, const GenTime &oldPos, const QString &oldcomment, const GenTime &pos, const QString &comment, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/editkeyframecommand.cpp b/src/commands/editkeyframecommand.cpp index bf5de55d..87676bbf 100644 --- a/src/commands/editkeyframecommand.cpp +++ b/src/commands/editkeyframecommand.cpp @@ -19,7 +19,7 @@ #include "editkeyframecommand.h" #include "customtrackview.h" -#include +#include EditKeyFrameCommand::EditKeyFrameCommand(CustomTrackView *view, const int track, const GenTime &pos, const int effectIndex, const QString& oldkeyframes, const QString& newkeyframes, bool doIt) : QUndoCommand(), diff --git a/src/commands/edittransitioncommand.cpp b/src/commands/edittransitioncommand.cpp index 8ec2a87c..533a6b20 100644 --- a/src/commands/edittransitioncommand.cpp +++ b/src/commands/edittransitioncommand.cpp @@ -18,7 +18,7 @@ #include "edittransitioncommand.h" #include "customtrackview.h" -#include +#include EditTransitionCommand::EditTransitionCommand(CustomTrackView *view, const int track, const GenTime &pos, const QDomElement &oldeffect, const QDomElement &effect, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/groupclipscommand.cpp b/src/commands/groupclipscommand.cpp index d8f2417a..4eb1bcb5 100644 --- a/src/commands/groupclipscommand.cpp +++ b/src/commands/groupclipscommand.cpp @@ -21,7 +21,7 @@ #include "groupclipscommand.h" #include "customtrackview.h" -#include +#include #include GroupClipsCommand::GroupClipsCommand(CustomTrackView *view, const QList &clipInfos, const QList & transitionInfos, bool group, QUndoCommand * parent) : diff --git a/src/commands/insertspacecommand.cpp b/src/commands/insertspacecommand.cpp index d06556f4..202d56a7 100644 --- a/src/commands/insertspacecommand.cpp +++ b/src/commands/insertspacecommand.cpp @@ -21,7 +21,7 @@ #include "insertspacecommand.h" #include "customtrackview.h" -#include +#include InsertSpaceCommand::InsertSpaceCommand(CustomTrackView *view, const QList &clipsToMove, const QList &transToMove, int track, const GenTime &duration, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/locktrackcommand.cpp b/src/commands/locktrackcommand.cpp index 1f334a9b..dee4f82b 100644 --- a/src/commands/locktrackcommand.cpp +++ b/src/commands/locktrackcommand.cpp @@ -20,7 +20,7 @@ #include "locktrackcommand.h" #include "customtrackview.h" -#include +#include LockTrackCommand::LockTrackCommand(CustomTrackView *view, int ix, bool lock, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/moveclipcommand.cpp b/src/commands/moveclipcommand.cpp index b41ebf8c..857eef04 100644 --- a/src/commands/moveclipcommand.cpp +++ b/src/commands/moveclipcommand.cpp @@ -22,7 +22,7 @@ #include "moveclipcommand.h" #include "customtrackview.h" -#include +#include MoveClipCommand::MoveClipCommand(CustomTrackView *view, const ItemInfo &start, const ItemInfo &end, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/moveeffectcommand.cpp b/src/commands/moveeffectcommand.cpp index 50d49e49..4d34cd0e 100644 --- a/src/commands/moveeffectcommand.cpp +++ b/src/commands/moveeffectcommand.cpp @@ -21,7 +21,7 @@ #include "moveeffectcommand.h" #include "customtrackview.h" -#include +#include #include MoveEffectCommand::MoveEffectCommand(CustomTrackView *view, const int track, const GenTime &pos, const QList &oldPos, int newPos, QUndoCommand * parent) : diff --git a/src/commands/movegroupcommand.cpp b/src/commands/movegroupcommand.cpp index 651a602d..22de56dc 100644 --- a/src/commands/movegroupcommand.cpp +++ b/src/commands/movegroupcommand.cpp @@ -21,7 +21,7 @@ #include "movegroupcommand.h" #include "customtrackview.h" -#include +#include MoveGroupCommand::MoveGroupCommand(CustomTrackView *view, const QList &startClip, const QList &startTransition, const GenTime &offset, const int trackOffset, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/movetransitioncommand.cpp b/src/commands/movetransitioncommand.cpp index 2a24d2f6..9520c6dc 100644 --- a/src/commands/movetransitioncommand.cpp +++ b/src/commands/movetransitioncommand.cpp @@ -18,7 +18,7 @@ #include "movetransitioncommand.h" #include "customtrackview.h" -#include +#include MoveTransitionCommand::MoveTransitionCommand(CustomTrackView *view, const ItemInfo &start, const ItemInfo &end, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/razorclipcommand.cpp b/src/commands/razorclipcommand.cpp index 8abf0647..ba2099ab 100644 --- a/src/commands/razorclipcommand.cpp +++ b/src/commands/razorclipcommand.cpp @@ -21,7 +21,7 @@ #include "razorclipcommand.h" #include "customtrackview.h" -#include +#include RazorClipCommand::RazorClipCommand(CustomTrackView *view, const ItemInfo &info, EffectsList stack, const GenTime &cutTime, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/resizeclipcommand.cpp b/src/commands/resizeclipcommand.cpp index aef17634..40823980 100644 --- a/src/commands/resizeclipcommand.cpp +++ b/src/commands/resizeclipcommand.cpp @@ -21,7 +21,7 @@ #include "resizeclipcommand.h" #include "customtrackview.h" -#include +#include ResizeClipCommand::ResizeClipCommand(CustomTrackView *view, const ItemInfo &start, const ItemInfo &end, bool doIt, bool dontWorry, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/commands/splitaudiocommand.cpp b/src/commands/splitaudiocommand.cpp index ee259136..d303bc85 100644 --- a/src/commands/splitaudiocommand.cpp +++ b/src/commands/splitaudiocommand.cpp @@ -21,7 +21,7 @@ #include "splitaudiocommand.h" #include "customtrackview.h" -#include +#include SplitAudioCommand::SplitAudioCommand(CustomTrackView *view, const int track, const GenTime &pos, const EffectsList &effects, QUndoCommand * parent) : QUndoCommand(parent), diff --git a/src/complexparameter.cpp b/src/complexparameter.cpp index 02298a93..09e260ed 100644 --- a/src/complexparameter.cpp +++ b/src/complexparameter.cpp @@ -18,7 +18,7 @@ #include "complexparameter.h" #include -#include +#include #include diff --git a/src/customtrackview.cpp b/src/customtrackview.cpp index c777d316..0cf3b482 100644 --- a/src/customtrackview.cpp +++ b/src/customtrackview.cpp @@ -69,7 +69,7 @@ #include "lib/audio/audioCorrelation.h" #include -#include +#include #include #include #include diff --git a/src/definitions.h b/src/definitions.h index dd04bd2d..4812dd79 100644 --- a/src/definitions.h +++ b/src/definitions.h @@ -24,7 +24,7 @@ #include "gentime.h" #include "effectslist.h" -#include +#include #include #include diff --git a/src/documentvalidator.cpp b/src/documentvalidator.cpp index 899bad46..abd91749 100644 --- a/src/documentvalidator.cpp +++ b/src/documentvalidator.cpp @@ -26,7 +26,7 @@ #include #include #include -#include +#include #include #include diff --git a/src/dvdwizard.cpp b/src/dvdwizard.cpp index 33c568fe..dddae69c 100644 --- a/src/dvdwizard.cpp +++ b/src/dvdwizard.cpp @@ -26,7 +26,7 @@ #include "monitormanager.h" #include -#include +#include #include #include #include diff --git a/src/effectslist.cpp b/src/effectslist.cpp index 1a09ebe3..5bda6bd6 100644 --- a/src/effectslist.cpp +++ b/src/effectslist.cpp @@ -19,7 +19,7 @@ #include "effectslist.h" #include -#include +#include EffectsList::EffectsList(bool indexRequired) : m_useIndex(indexRequired) diff --git a/src/effectslistview.cpp b/src/effectslistview.cpp index a9e9328b..567fa3e2 100644 --- a/src/effectslistview.cpp +++ b/src/effectslistview.cpp @@ -24,7 +24,7 @@ #include "kdenlivesettings.h" #include -#include +#include #include #include diff --git a/src/effectstack/collapsibleeffect.cpp b/src/effectstack/collapsibleeffect.cpp index c2a59f7a..1bf09061 100644 --- a/src/effectstack/collapsibleeffect.cpp +++ b/src/effectstack/collapsibleeffect.cpp @@ -34,7 +34,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/src/effectstack/collapsiblegroup.cpp b/src/effectstack/collapsiblegroup.cpp index c4824e9f..cd5a439f 100644 --- a/src/effectstack/collapsiblegroup.cpp +++ b/src/effectstack/collapsiblegroup.cpp @@ -30,7 +30,7 @@ #include #include -#include +#include #include #include #include diff --git a/src/effectstack/effectstackview2.cpp b/src/effectstack/effectstackview2.cpp index c5f8ec8d..8fe4d1fe 100644 --- a/src/effectstack/effectstackview2.cpp +++ b/src/effectstack/effectstackview2.cpp @@ -30,7 +30,7 @@ #include "collapsiblegroup.h" #include -#include +#include #include #include #include diff --git a/src/effectstackedit.cpp b/src/effectstackedit.cpp index 2a21a0fc..11d9d7c6 100644 --- a/src/effectstackedit.cpp +++ b/src/effectstackedit.cpp @@ -22,7 +22,7 @@ #include "kdenlivesettings.h" #include -#include +#include #include #include diff --git a/src/folderprojectitem.cpp b/src/folderprojectitem.cpp index 6f814b54..4a868f33 100644 --- a/src/folderprojectitem.cpp +++ b/src/folderprojectitem.cpp @@ -21,7 +21,7 @@ #include "folderprojectitem.h" #include -#include +#include #include diff --git a/src/headertrack.cpp b/src/headertrack.cpp index cef0b2e0..19678333 100644 --- a/src/headertrack.cpp +++ b/src/headertrack.cpp @@ -23,7 +23,7 @@ #include "kdenlivesettings.h" #include -#include +#include #include #include diff --git a/src/kdenlivedoc.cpp b/src/kdenlivedoc.cpp index 291201f2..01cd32e3 100644 --- a/src/kdenlivedoc.cpp +++ b/src/kdenlivedoc.cpp @@ -35,7 +35,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index f387927a..e0d461be 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -69,7 +69,7 @@ #include #include -#include +#include #include #include #include diff --git a/src/mltdevicecapture.cpp b/src/mltdevicecapture.cpp index 425b81a6..296278a8 100644 --- a/src/mltdevicecapture.cpp +++ b/src/mltdevicecapture.cpp @@ -25,7 +25,7 @@ #include #include #include -#include +#include #include #include diff --git a/src/monitor.cpp b/src/monitor.cpp index 0920da0a..53abc686 100644 --- a/src/monitor.cpp +++ b/src/monitor.cpp @@ -27,7 +27,7 @@ #include "kdenlivesettings.h" #include -#include +#include #include #include #include diff --git a/src/noteswidget.cpp b/src/noteswidget.cpp index e18e2142..f3e5aaac 100644 --- a/src/noteswidget.cpp +++ b/src/noteswidget.cpp @@ -20,7 +20,7 @@ #include "noteswidget.h" -#include +#include #include #include #include diff --git a/src/projectitem.cpp b/src/projectitem.cpp index 6b5f573e..3cb1150b 100644 --- a/src/projectitem.cpp +++ b/src/projectitem.cpp @@ -24,7 +24,7 @@ #include "docclipbase.h" #include -#include +#include #include #include diff --git a/src/projectlist.cpp b/src/projectlist.cpp index 86eb2396..626a99d7 100644 --- a/src/projectlist.cpp +++ b/src/projectlist.cpp @@ -48,7 +48,7 @@ #include #include -#include +#include #include #include #include diff --git a/src/projectlistview.cpp b/src/projectlistview.cpp index 0b3c67df..6267017a 100644 --- a/src/projectlistview.cpp +++ b/src/projectlistview.cpp @@ -26,7 +26,7 @@ #include #include -#include +#include #include #include diff --git a/src/projecttree/abstractclipjob.cpp b/src/projecttree/abstractclipjob.cpp index 23f71a5b..1956430a 100644 --- a/src/projecttree/abstractclipjob.cpp +++ b/src/projecttree/abstractclipjob.cpp @@ -23,7 +23,7 @@ #include "kdenlivedoc.h" #include -#include +#include AbstractClipJob::AbstractClipJob(JOBTYPE type, CLIPTYPE cType, const QString &id, const QStringList &) : diff --git a/src/projecttree/cutclipjob.cpp b/src/projecttree/cutclipjob.cpp index 48bc77e5..26ff2bba 100644 --- a/src/projecttree/cutclipjob.cpp +++ b/src/projecttree/cutclipjob.cpp @@ -23,7 +23,7 @@ #include "kdenlivedoc.h" #include -#include +#include CutClipJob::CutClipJob(CLIPTYPE cType, const QString &id, const QStringList ¶meters) : AbstractClipJob(CUTJOB, cType, id, parameters) { diff --git a/src/projecttree/meltjob.cpp b/src/projecttree/meltjob.cpp index 7fbb2587..294ff94f 100644 --- a/src/projecttree/meltjob.cpp +++ b/src/projecttree/meltjob.cpp @@ -24,7 +24,7 @@ #include #include -#include +#include #include diff --git a/src/projecttree/proxyclipjob.cpp b/src/projecttree/proxyclipjob.cpp index 1049cfb3..ca565051 100644 --- a/src/projecttree/proxyclipjob.cpp +++ b/src/projecttree/proxyclipjob.cpp @@ -25,7 +25,7 @@ #include -#include +#include ProxyJob::ProxyJob(CLIPTYPE cType, const QString &id, const QStringList& parameters) : AbstractClipJob(PROXYJOB, cType, id, parameters), diff --git a/src/recmonitor.cpp b/src/recmonitor.cpp index e104426e..d8d2bd2d 100644 --- a/src/recmonitor.cpp +++ b/src/recmonitor.cpp @@ -28,7 +28,7 @@ #include "profilesdialog.h" #include -#include +#include #include #include #include diff --git a/src/renderer.cpp b/src/renderer.cpp index 444fcc70..ef5c177d 100644 --- a/src/renderer.cpp +++ b/src/renderer.cpp @@ -35,7 +35,7 @@ #include #include #include -#include +#include #include #include diff --git a/src/scopes/abstractscopewidget.cpp b/src/scopes/abstractscopewidget.cpp index 4f94ba43..bce86311 100644 --- a/src/scopes/abstractscopewidget.cpp +++ b/src/scopes/abstractscopewidget.cpp @@ -21,6 +21,7 @@ #include #include +#include // Uncomment for Scope debugging. //#define DEBUG_ASW diff --git a/src/simplekeyframes/simplekeyframewidget.cpp b/src/simplekeyframes/simplekeyframewidget.cpp index af8e477e..85cbece7 100644 --- a/src/simplekeyframes/simplekeyframewidget.cpp +++ b/src/simplekeyframes/simplekeyframewidget.cpp @@ -24,7 +24,7 @@ #include #include -#include +#include SimpleKeyframeWidget::SimpleKeyframeWidget(const Timecode &t, int duration, QWidget *parent) : QWidget(parent) diff --git a/src/smallruler.cpp b/src/smallruler.cpp index ee77912f..d5b99032 100644 --- a/src/smallruler.cpp +++ b/src/smallruler.cpp @@ -23,7 +23,7 @@ #include #include -#include +#include #include #include diff --git a/src/stopmotion/capturehandler.cpp b/src/stopmotion/capturehandler.cpp index f1778ddf..99318c75 100644 --- a/src/stopmotion/capturehandler.cpp +++ b/src/stopmotion/capturehandler.cpp @@ -17,7 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * ***************************************************************************/ -#include +#include #include "capturehandler.h" #include "kdenlivesettings.h" diff --git a/src/subprojectitem.cpp b/src/subprojectitem.cpp index 7b1f7450..b03ed5ca 100644 --- a/src/subprojectitem.cpp +++ b/src/subprojectitem.cpp @@ -26,7 +26,7 @@ #include -#include +#include #include const int DurationRole = Qt::UserRole + 1; diff --git a/src/timecode.cpp b/src/timecode.cpp index 789b2861..d36b0f21 100644 --- a/src/timecode.cpp +++ b/src/timecode.cpp @@ -82,7 +82,7 @@ return frameNumber; #include -#include +#include #include "timecode.h" diff --git a/src/titledocument.cpp b/src/titledocument.cpp index 16fcda43..f76707bf 100644 --- a/src/titledocument.cpp +++ b/src/titledocument.cpp @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #include diff --git a/src/utils/archiveorg.cpp b/src/utils/archiveorg.cpp index e6b9296c..357b9b82 100644 --- a/src/utils/archiveorg.cpp +++ b/src/utils/archiveorg.cpp @@ -30,7 +30,7 @@ #include #include "kdenlivesettings.h" #include -#include +#include #ifdef USE_QJSON #include diff --git a/src/utils/freesound.cpp b/src/utils/freesound.cpp index 962984f5..00cb6ee4 100644 --- a/src/utils/freesound.cpp +++ b/src/utils/freesound.cpp @@ -30,7 +30,7 @@ #include #include "kdenlivesettings.h" #include -#include +#include #ifdef USE_QJSON #include diff --git a/src/v4l/v4lcapture.cpp b/src/v4l/v4lcapture.cpp index cf0e247c..8e6a63b4 100644 --- a/src/v4l/v4lcapture.cpp +++ b/src/v4l/v4lcapture.cpp @@ -30,7 +30,7 @@ #include #include -#include +#include #include "v4lcapture.h" #include "kdenlivesettings.h" diff --git a/src/wizard.cpp b/src/wizard.cpp index 7267e4bc..47de0a01 100644 --- a/src/wizard.cpp +++ b/src/wizard.cpp @@ -30,7 +30,7 @@ #include #include -#include +#include #include #include #include -- 2.39.2