diff --git a/src/dvdwizard.h b/src/dvdwizard.h
index 2aa6a55..cfeba33 100644
|
|
|
37 | 37 | #include "ui_dvdwizardstatus_ui.h" |
38 | 38 | #include "ui_dvdwizardchapters_ui.h" |
39 | 39 | |
| 40 | typedef QMap <QString, QRect> stringRectMap; |
| 41 | |
40 | 42 | class DvdWizard : public QWizard |
41 | 43 | { |
42 | 44 | Q_OBJECT |
… |
… |
private: |
75 | 77 | QMenu *m_burnMenu; |
76 | 78 | void errorMessage(const QString &text); |
77 | 79 | void infoMessage(const QString &text); |
78 | | void processDvdauthor(QString menuMovieUrl = QString(), QMap <QString, QRect> buttons = QMap <QString, QRect>(), QStringList buttonsTarget = QStringList()); |
| 80 | void processDvdauthor(QString menuMovieUrl = QString(), stringRectMap buttons = stringRectMap(), QStringList buttonsTarget = QStringList()); |
79 | 81 | |
80 | 82 | private slots: |
81 | 83 | void slotPageChanged(int page); |
diff --git a/src/kdenlivedoc.h b/src/kdenlivedoc.h
index 955aee9..22aeac3 100644
|
|
Q_OBJECT public: |
83 | 83 | * |
84 | 84 | * If the clip wasn't added before, it tries to add it to the project. */ |
85 | 85 | bool addClipInfo(QDomElement elem, QDomElement orig, QString clipId); |
86 | | void slotAddClipList(const KUrl::List urls, stringMap data = QMap <QString, QString>()); |
| 86 | void slotAddClipList(const KUrl::List urls, stringMap data = stringMap()); |
87 | 87 | void deleteClip(const QString &clipId); |
88 | 88 | int getFramePos(QString duration); |
89 | 89 | DocClipBase *getBaseClip(const QString &clipId); |
diff --git a/src/projectlist.h b/src/projectlist.h
index 5edc32e..021058d 100644
|
|
private: |
423 | 423 | /** @brief Get the list of job names for current clip. */ |
424 | 424 | QStringList getPendingJobs(const QString &id); |
425 | 425 | /** @brief Start an MLT process job. */ |
426 | | void processClipJob(QStringList ids, const QString&destination, bool autoAdd, QStringList jobParams, const QString &description, QMap <QString, QString>extraParams = QMap <QString, QString>()); |
| 426 | void processClipJob(QStringList ids, const QString&destination, bool autoAdd, QStringList jobParams, const QString &description, stringMap extraParams = stringMap()); |
427 | 427 | /** @brief Create rounded shape pixmap for project tree thumb. */ |
428 | 428 | QPixmap roundedPixmap(QImage img); |
429 | 429 | QPixmap roundedPixmap(QPixmap source); |
diff --git a/src/projecttree/meltjob.h b/src/projecttree/meltjob.h
index f4c5f05..22dd034 100644
|
|
class MeltJob : public AbstractClipJob |
41 | 41 | Q_OBJECT |
42 | 42 | |
43 | 43 | public: |
44 | | MeltJob(CLIPTYPE cType, const QString &id, QStringList parameters, QMap <QString, QString> extraParams = QMap <QString, QString>()); |
| 44 | MeltJob(CLIPTYPE cType, const QString &id, QStringList parameters, stringMap extraParams = stringMap()); |
45 | 45 | virtual ~ MeltJob(); |
46 | 46 | const QString destination() const; |
47 | 47 | void startJob(); |