diff src/audacious/ui_skinned_button.c @ 3105:1912eba1004b audacious-1.4.0-dr1

cleaning
author Tomasz Mon <desowin@gmail.com>
date Thu, 19 Jul 2007 16:21:31 +0200
parents 1faf842dea49
children 3b6d316f8b09
line wrap: on
line diff
--- a/src/audacious/ui_skinned_button.c	Thu Jul 19 13:51:37 2007 +0200
+++ b/src/audacious/ui_skinned_button.c	Thu Jul 19 16:21:31 2007 +0200
@@ -20,22 +20,19 @@
 #include "ui_skinned_button.h"
 #include "util.h"
 
-#include <gtk/gtkmain.h>
-#include <gtk/gtkmarshal.h>
-
-#define UI_SKINNED_BUTTON_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), UI_TYPE_SKINNED_BUTTON, UiSkinnedButtonPrivate))
+#define UI_SKINNED_BUTTON_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), ui_skinned_button_get_type(), UiSkinnedButtonPrivate))
 typedef struct _UiSkinnedButtonPrivate UiSkinnedButtonPrivate;
 
 static GMutex *mutex = NULL;
 
 enum {
-	PRESSED,
-	RELEASED,
-	CLICKED,
-	RIGHT_CLICKED,
-	DOUBLED,
-	REDRAW,
-	LAST_SIGNAL
+    PRESSED,
+    RELEASED,
+    CLICKED,
+    RIGHT_CLICKED,
+    DOUBLED,
+    REDRAW,
+    LAST_SIGNAL
 };
 
 struct _UiSkinnedButtonPrivate {