In commit b4cb488, wprogressindicator.c was removed. It was restored in commit d435ea7, but the corresponding declarations in WINGs/WINGs.h were not. This patch fixes this oversight. --- WINGs/WINGs/WINGs.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+)
diff --git a/WINGs/WINGs/WINGs.h b/WINGs/WINGs/WINGs.h index dd3fac5..51252f5 100644 --- a/WINGs/WINGs/WINGs.h +++ b/WINGs/WINGs/WINGs.h @@ -1450,6 +1450,22 @@ void WMSetPopUpButtonEnabled(WMPopUpButton *bPtr, Bool flag); Bool WMGetPopUpButtonEnabled(WMPopUpButton *bPtr); +/* ---[ WINGs/wprogressindicator.c ]------------------------------------- */ + +WMProgressIndicator* WMCreateProgressIndicator(WMWidget *parent); + +void WMSetProgressIndicatorMinValue(WMProgressIndicator *progressindicator, int value); + +void WMSetProgressIndicatorMaxValue(WMProgressIndicator *progressindicator, int value); + +void WMSetProgressIndicatorValue(WMProgressIndicator *progressindicator, int value); + +int WMGetProgressIndicatorMinValue(WMProgressIndicator *progressindicator); + +int WMGetProgressIndicatorMaxValue(WMProgressIndicator *progressindicator); + +int WMGetProgressIndicatorValue(WMProgressIndicator *progressindicator); + /* ---[ WINGs/wcolorpanel.c ]--------------------------------------------- */ WMColorPanel* WMGetColorPanel(WMScreen *scrPtr); -- 1.9.1 -- To unsubscribe, send mail to wmaker-dev-unsubscr...@lists.windowmaker.org.