summaryrefslogtreecommitdiff
path: root/src/WMProps.c
diff options
context:
space:
mode:
authorMagnus Kessler <Magnus.Kessler@gmx.net>2007-05-01 15:20:08 +0200
committerTilman Sauerbeck <tilman@code-monkey.de>2007-05-01 15:20:08 +0200
commita48386ce6b5f8fd2d9dc11a966c9bf5da59f3831 (patch)
treee842646f7797fc74070b1bd9ead7861b5b6b752d /src/WMProps.c
parent605d357074d556a05a3fba2e85cbea36a3204248 (diff)
downloadxorg-lib-libX11-a48386ce6b5f8fd2d9dc11a966c9bf5da59f3831.tar.gz
Switched function definitions from K&R to ANSI style.
Diffstat (limited to 'src/WMProps.c')
-rw-r--r--src/WMProps.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/src/WMProps.c b/src/WMProps.c
index 62c6a8d1..06c76a17 100644
--- a/src/WMProps.c
+++ b/src/WMProps.c
@@ -73,17 +73,16 @@ SOFTWARE.
* WM_CLASS type: STRING/STRING format: 8
*/
-void XSetWMProperties (dpy, w, windowName, iconName, argv, argc, sizeHints,
- wmHints, classHints)
- Display *dpy;
- Window w; /* window to decorate */
- XTextProperty *windowName; /* name of application */
- XTextProperty *iconName; /* name string for icon */
- char **argv; /* command line */
- int argc; /* size of command line */
- XSizeHints *sizeHints; /* size hints for window in its normal state */
- XWMHints *wmHints; /* miscelaneous window manager hints */
- XClassHint *classHints; /* resource name and class */
+void XSetWMProperties (
+ Display *dpy,
+ Window w, /* window to decorate */
+ XTextProperty *windowName, /* name of application */
+ XTextProperty *iconName, /* name string for icon */
+ char **argv, /* command line */
+ int argc, /* size of command line */
+ XSizeHints *sizeHints, /* size hints for window in its normal state */
+ XWMHints *wmHints, /* miscelaneous window manager hints */
+ XClassHint *classHints) /* resource name and class */
{
XTextProperty textprop;
char hostName[256];