Fixes another warnings in Locallab GUI during clang10 compilation
This commit is contained in:
parent
a111c71ea9
commit
101d226c59
@ -130,19 +130,19 @@ public:
|
|||||||
Locallab();
|
Locallab();
|
||||||
|
|
||||||
// FoldableToolPanel management functions
|
// FoldableToolPanel management functions
|
||||||
void read(const rtengine::procparams::ProcParams* pp, const ParamsEdited* pedited = nullptr);
|
void read(const rtengine::procparams::ProcParams* pp, const ParamsEdited* pedited = nullptr) override;
|
||||||
void write(rtengine::procparams::ProcParams* pp, ParamsEdited* pedited = nullptr);
|
void write(rtengine::procparams::ProcParams* pp, ParamsEdited* pedited = nullptr) override;
|
||||||
void setDefaults(const rtengine::procparams::ProcParams* defParams, const ParamsEdited* pedited = nullptr);
|
void setDefaults(const rtengine::procparams::ProcParams* defParams, const ParamsEdited* pedited = nullptr) override;
|
||||||
void setListener(ToolPanelListener* tpl) override;
|
void setListener(ToolPanelListener* tpl) override;
|
||||||
|
|
||||||
// Locallab Retinex tool min/man management function
|
// Locallab Retinex tool min/man management function
|
||||||
void minmaxChanged(const std::vector<locallabRetiMinMax> &minmax, int selspot);
|
void minmaxChanged(const std::vector<locallabRetiMinMax> &minmax, int selspot) override;
|
||||||
|
|
||||||
// Locallab Log Encoding autocompute function
|
// Locallab Log Encoding autocompute function
|
||||||
void logencodChanged(const float blackev, const float whiteev, const float sourceg, const float targetg);
|
void logencodChanged(const float blackev, const float whiteev, const float sourceg, const float targetg) override;
|
||||||
|
|
||||||
// Locallab tools mask background management function
|
// Locallab tools mask background management function
|
||||||
void refChanged(const std::vector<locallabRef> &ref, int selspot);
|
void refChanged(const std::vector<locallabRef> &ref, int selspot) override;
|
||||||
|
|
||||||
// Mask visibility management functions
|
// Mask visibility management functions
|
||||||
struct llMaskVisibility {
|
struct llMaskVisibility {
|
||||||
@ -169,15 +169,15 @@ public:
|
|||||||
void resetshowPressed();
|
void resetshowPressed();
|
||||||
|
|
||||||
// EditProvider management function
|
// EditProvider management function
|
||||||
void setEditProvider(EditDataProvider* provider);
|
void setEditProvider(EditDataProvider* provider) override;
|
||||||
void subscribe();
|
void subscribe();
|
||||||
void unsubscribe();
|
void unsubscribe();
|
||||||
|
|
||||||
// FoldableToolPanel event function
|
// FoldableToolPanel event function
|
||||||
void enabledChanged();
|
void enabledChanged() override;
|
||||||
|
|
||||||
// Curve management function
|
// Curve management function
|
||||||
void autoOpenCurve();
|
void autoOpenCurve() override;
|
||||||
|
|
||||||
// Locallab tools expanders management functions
|
// Locallab tools expanders management functions
|
||||||
void foldAllButOne(LocallabTool* except);
|
void foldAllButOne(LocallabTool* except);
|
||||||
@ -193,11 +193,11 @@ private:
|
|||||||
void setParamEditable(bool cond);
|
void setParamEditable(bool cond);
|
||||||
|
|
||||||
// LocallabToolListener function
|
// LocallabToolListener function
|
||||||
void resetOtherMaskView(LocallabTool* current);
|
void resetOtherMaskView(LocallabTool* current) override;
|
||||||
void toolRemoved(LocallabTool* current);
|
void toolRemoved(LocallabTool* current) override;
|
||||||
|
|
||||||
// LocallabToolListListener function
|
// LocallabToolListListener function
|
||||||
void locallabToolToAdd(const Glib::ustring &toolname);
|
void locallabToolToAdd(const Glib::ustring &toolname) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -233,7 +233,7 @@ public:
|
|||||||
LocallabColor();
|
LocallabColor();
|
||||||
~LocallabColor();
|
~LocallabColor();
|
||||||
|
|
||||||
void setListener(ToolPanelListener* tpl);
|
void setListener(ToolPanelListener* tpl) override;
|
||||||
|
|
||||||
void resetMaskView() override;
|
void resetMaskView() override;
|
||||||
void getMaskView(int &colorMask, int &colorMaskinv, int &expMask, int &expMaskinv, int &shMask, int &shMaskinv, int &vibMask, int &softMask, int &blMask, int &tmMask, int &retiMask, int &sharMask, int &lcMask, int &cbMask) override;
|
void getMaskView(int &colorMask, int &colorMaskinv, int &expMask, int &expMaskinv, int &shMask, int &shMaskinv, int &vibMask, int &softMask, int &blMask, int &tmMask, int &retiMask, int &sharMask, int &lcMask, int &cbMask) override;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user