]> Pileus Git - ~andy/gtk/blobdiff - gdk/gdkrgba.h
Fix up for newer draft of wm-spec
[~andy/gtk] / gdk / gdkrgba.h
index 2b7670477ac5d015327235c52a9e77a5ee00dffe..9f0f0743b29907ab39358baeb93b274a8276de3f 100644 (file)
@@ -12,9 +12,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
 /*
  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  */
 
+#ifndef __GDK_RGBA_H__
+#define __GDK_RGBA_H__
+
 #if !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION)
 #error "Only <gdk/gdk.h> can be included directly."
 #endif
 
-#ifndef __GDK_RGBA_H__
-#define __GDK_RGBA_H__
-
 #include <gdk/gdktypes.h>
 
 G_BEGIN_DECLS
@@ -45,20 +43,19 @@ struct _GdkRGBA
 
 #define GDK_TYPE_RGBA (gdk_rgba_get_type ())
 
-GdkRGBA * gdk_rgba_copy (GdkRGBA *rgba);
-void      gdk_rgba_free (GdkRGBA *rgba);
+GType     gdk_rgba_get_type  (void) G_GNUC_CONST;
 
-gboolean  gdk_rgba_parse (GdkRGBA     *rgba,
-                          const gchar *spec);
+GdkRGBA * gdk_rgba_copy      (const GdkRGBA *rgba);
+void      gdk_rgba_free      (GdkRGBA       *rgba);
 
-guint     gdk_rgba_hash  (gconstpointer p);
-gboolean  gdk_rgba_equal (gconstpointer p1,
-                          gconstpointer p2);
+guint     gdk_rgba_hash      (gconstpointer  p);
+gboolean  gdk_rgba_equal     (gconstpointer  p1,
+                              gconstpointer  p2);
 
+gboolean  gdk_rgba_parse     (GdkRGBA       *rgba,
+                              const gchar   *spec);
 gchar *   gdk_rgba_to_string (const GdkRGBA *rgba);
 
-GType     gdk_rgba_get_type (void) G_GNUC_CONST;
-
 
 G_END_DECLS