diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2024-07-03 10:19:30 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2024-07-03 10:19:30 +0200 |
commit | a14a7a0ccc9de76aeab0b2e4bbf58f1a79deedc2 (patch) | |
tree | e469179df67a0e0db49161a43cbf8076a189f6f4 /app/wlib/mswlib/mswstatus.c | |
parent | 5d2c2b27a6323e2666378b986129b2a7c2c39e5c (diff) |
New upstream version 5.3.0GAupstream/5.3.0GAupstream
Diffstat (limited to 'app/wlib/mswlib/mswstatus.c')
-rw-r--r-- | app/wlib/mswlib/mswstatus.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/app/wlib/mswlib/mswstatus.c b/app/wlib/mswlib/mswstatus.c index 1502a4e..7473ec8 100644 --- a/app/wlib/mswlib/mswstatus.c +++ b/app/wlib/mswlib/mswstatus.c @@ -39,10 +39,10 @@ */ void wStatusSetValue( - wStatus_p b, - const char * arg) + wStatus_p b, + const char * arg) { - wMessageSetValue((wMessage_p)b, arg); + wMessageSetValue((wMessage_p)b, arg); } /** * Create a window for a simple text. @@ -58,14 +58,14 @@ void wStatusSetValue( */ wStatus_p wStatusCreate( - wWin_p parent, - wWinPix_t x, - wWinPix_t y, - const char * labelStr, - wWinPix_t width, - const char *message) + wWin_p parent, + wWinPix_t x, + wWinPix_t y, + const char * labelStr, + wWinPix_t width, + const char *message) { - return (wStatus_p)wMessageCreateEx(parent, x, y, labelStr, width, message, 0); + return (wStatus_p)wMessageCreateEx(parent, x, y, labelStr, width, message, 0); } /** @@ -78,7 +78,7 @@ wStatus_p wStatusCreate( wWinPix_t wStatusGetWidth(const char *testString) { - return (wMessageGetWidth(testString)); + return (wMessageGetWidth(testString)); } /** @@ -89,9 +89,9 @@ wStatusGetWidth(const char *testString) */ wWinPix_t wStatusGetHeight( - long flags) + long flags) { - return (wMessageGetHeight(flags)); + return (wMessageGetHeight(flags)); } /** @@ -103,8 +103,8 @@ wWinPix_t wStatusGetHeight( */ void wStatusSetWidth( - wStatus_p b, - wWinPix_t width) + wStatus_p b, + wWinPix_t width) { - wMessageSetWidth((wMessage_p)b, width); + wMessageSetWidth((wMessage_p)b, width); } |