Added GPL license header to all source files
[dockapps/wmnotify.git] / src / dockapp.c
index 9f8994b..5cdbefa 100644 (file)
@@ -1,5 +1,22 @@
-/* dockapp.c -- routines for managing dockapp windows and icons. */
-
+/*
+ * dockapp.c -- routines for managing dockapp windows and icons.
+ *
+ * Copyright (C) 2003 Hugo Villeneuve <hugo@hugovil.com>
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
 
 /* Define filename_M */
 #define DOCKAPP_M 1
@@ -72,14 +89,14 @@ GetColor( char *name )
   color.pixel = 0;
   res = (bool) XParseColor( dockapp.display, attributes.colormap, name,
                            &color );
-  if( res == FALSE ) {
+  if( res == false ) {
     fprintf( stderr, "%s: Can't parse %s.\n", PACKAGE, name );
     ErrorLocation( __FILE__, __LINE__ );
     exit( EXIT_FAILURE );
   }
   
   res = (bool) XAllocColor( dockapp.display, attributes.colormap, &color );
-  if( res == FALSE ) {
+  if( res == false ) {
     fprintf( stderr, "%s: Can't allocate %s.\n", PACKAGE, name );
     ErrorLocation( __FILE__, __LINE__ );
     exit( EXIT_FAILURE );
@@ -93,9 +110,9 @@ static void
 flush_expose( Window win )
 {
   XEvent dummy;
-  bool res = TRUE;
+  bool res = true;
 
-  while( res != FALSE ) {
+  while( res != false ) {
     res = (bool) XCheckTypedWindowEvent( dockapp.display, win, Expose, &dummy );
   }
 }