diff options
| author | Joel Bodenmann <joel@unormal.org> | 2014-09-29 08:08:36 +0200 | 
|---|---|---|
| committer | Joel Bodenmann <joel@unormal.org> | 2014-09-29 08:08:36 +0200 | 
| commit | 32a4969b7d4d92b1d40e60fae676d798bacb780f (patch) | |
| tree | 9607d00476bff7fe4fc1f5cc4c3f261ca7d5c6bf /src/gwin/gwin_progressbar.h | |
| parent | 1e8a7ff6ddb5bb9accaf2918c98667427aa1b6b3 (diff) | |
| parent | 611133cbc0d55f9dd570cfbccbe432ccc63a12aa (diff) | |
| download | uGFX-32a4969b7d4d92b1d40e60fae676d798bacb780f.tar.gz uGFX-32a4969b7d4d92b1d40e60fae676d798bacb780f.tar.bz2 uGFX-32a4969b7d4d92b1d40e60fae676d798bacb780f.zip  | |
Merge branch 'newmouse' of bitbucket.org:Tectu/ugfx into newmouse
Diffstat (limited to 'src/gwin/gwin_progressbar.h')
| -rw-r--r-- | src/gwin/gwin_progressbar.h | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gwin/gwin_progressbar.h b/src/gwin/gwin_progressbar.h index 49c11a98..dae9d40a 100644 --- a/src/gwin/gwin_progressbar.h +++ b/src/gwin/gwin_progressbar.h @@ -33,7 +33,6 @@ typedef struct GProgressbarObject {  	int					pos;  	#if GWIN_PROGRESSBAR_AUTO  		GTimer			gt; -		delaytime_t		delay;  	#endif  } GProgressbarObject; @@ -59,7 +58,7 @@ extern "C" {   * @note				A progressbar does not take any GINPUT inputs.   *   * @api - */	 + */  GHandle gwinGProgressbarCreate(GDisplay *g, GProgressbarObject *gb, const GWidgetInit *pInit);  #define gwinProgressbarCreate(w, pInit)			gwinGProgressbarCreate(GDISP, w, pInit) @@ -165,14 +164,14 @@ void gwinProgressbarDecrement(GHandle gh);  	 * @api  	 */  	void gwinProgressbarStart(GHandle gh, delaytime_t delay); -	 +  	/**  	 * @brief	Stop the timer which is started by @p gwinProgressbarStart()  	 *  	 * @param[in] gh		The window handle (must be a progressbar window)  	 *  	 * @api -	 */		 +	 */  	void gwinProgressbarStop(GHandle gh);  #endif /* GWIN_PROGRESSBAR_AUTO */  | 
