]> Dogcows Code - chaz/openbox/blobdiff - tests/title.c
Merge branch 'master' into chaz
[chaz/openbox] / tests / title.c
index 38c82a6903533015feaa6483b0838ab1beb0e27a..799bdf54dc804e335b8689c9710b6d2d9757d8c9 100644 (file)
@@ -1,7 +1,7 @@
 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
 
-   noresize.c for the Openbox window manager
-   Copyright (c) 2003        Ben Jansens
+   title.c for the Openbox window manager
+   Copyright (c) 2003-2007   Dana Jansens
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -16,6 +16,7 @@
    See the COPYING file for a copy of the GNU General Public License.
 */
 
+#include <string.h>
 #include <stdio.h>
 #include <X11/Xlib.h>
 #include <X11/Xutil.h>
@@ -45,13 +46,13 @@ int main (int argc, char **argv) {
   if (argc > 3)
     nameenc = XInternAtom(display,argv[3],False);
   else
-    nameenc = XInternAtom(display,argv[3],False);
+    nameenc = XInternAtom(display,"STRING",False);
 
   win = XCreateWindow(display, RootWindow(display, 0),
                      x, y, w, h, 10, CopyFromParent, CopyFromParent,
                      CopyFromParent, 0, NULL);
 
-  XSetWindowBackground(display,win,WhitePixel(display,0)); 
+  XSetWindowBackground(display,win,WhitePixel(display,0));
 
 //  XStringListToTextProperty(&argv[1], 1, &name);
 //  XSetWMName(display, win, &name);
This page took 0.023281 seconds and 4 git commands to generate.