X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fparameterplotter.h;h=917bd6a2b77ed54ff38e0583088677613131db90;hb=c3302003093710ee247ad84c0fe2ef3c579d417f;hp=2961dcab1373a1d1f5f4ac0513e84c341c20b141;hpb=fc1415ba45654f57bc25264fcd9e16221523f626;p=kdenlive diff --git a/src/parameterplotter.h b/src/parameterplotter.h index 2961dcab..917bd6a2 100644 --- a/src/parameterplotter.h +++ b/src/parameterplotter.h @@ -27,15 +27,15 @@ class ParameterPlotter : public KPlotWidget Q_OBJECT public: explicit ParameterPlotter(QWidget *parent = 0); - virtual ~ParameterPlotter() {} + ~ParameterPlotter() {} void setMoveX(bool); void setMoveY(bool); void setMoveTimeLine(bool); void setNewPoints(bool); - bool isMoveX(); - bool isMoveY(); - bool isMoveTimeline(); - bool isNewPoints(); + bool isMoveX() const; + bool isMoveY() const; + bool isMoveTimeline() const; + bool isNewPoints() const; void replot(const QString& name = QString()); private: KPlotPoint* m_movepoint; @@ -56,9 +56,9 @@ protected: public slots: void setPointLists(const QDomElement&, const QString& paramName, int , int); signals: - void parameterChanged(QDomElement); + void parameterChanged(const QDomElement&); void updateFrame(int); - void parameterList(QStringList); + void parameterList(const QStringList&); };