diff options
author | Joel Bodenmann <joel@seriouslyembedded.com> | 2015-08-12 19:35:44 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@seriouslyembedded.com> | 2015-08-12 19:35:44 +0200 |
commit | 213013e68e64a655e0c6cb56875ea9a7977fe2f6 (patch) | |
tree | d764dd885746beb4ec1b153c8c4c3d06c4fe6248 /src | |
parent | 16d213d4ed14add60e286246ad6dc563761b9689 (diff) | |
download | uGFX-213013e68e64a655e0c6cb56875ea9a7977fe2f6.tar.gz uGFX-213013e68e64a655e0c6cb56875ea9a7977fe2f6.tar.bz2 uGFX-213013e68e64a655e0c6cb56875ea9a7977fe2f6.zip |
Codingstyle
Diffstat (limited to 'src')
-rw-r--r-- | src/gwin/gwin_widget.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/gwin/gwin_widget.c b/src/gwin/gwin_widget.c index 666987ac..6002ffa9 100644 --- a/src/gwin/gwin_widget.c +++ b/src/gwin/gwin_widget.c @@ -382,10 +382,10 @@ const GWidgetStyle *gwinGetDefaultStyle(void) { return defaultStyle; } - void gwinSetText(GHandle gh, const char *text, bool_t useAlloc) { - if (!(gh->flags & GWIN_FLG_WIDGET)) + if (!(gh->flags & GWIN_FLG_WIDGET)) { return; + } // Dispose of the old string if ((gh->flags & GWIN_FLG_ALLOCTXT)) { @@ -397,9 +397,9 @@ void gwinSetText(GHandle gh, const char *text, bool_t useAlloc) { } // Alloc the new text if required - if (!text || !*text) + if (!text || !*text) { gw->text = ""; - else if (useAlloc) { + } else if (useAlloc) { char *str; if ((str = gfxAlloc(strlen(text)+1))) { @@ -407,8 +407,10 @@ void gwinSetText(GHandle gh, const char *text, bool_t useAlloc) { strcpy(str, text); } gw->text = (const char *)str; - } else + } else { gw->text = text; + } + _gwinUpdate(gh); } |