diff src/multi.c @ 3867:43e396e94095

[gaim-migrate @ 4019] compile cleanups by nathan committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Sun, 03 Nov 2002 07:36:09 +0000
parents fb519383a058
children 94852b7cc81f
line wrap: on
line diff
--- a/src/multi.c	Sun Nov 03 07:32:07 2002 +0000
+++ b/src/multi.c	Sun Nov 03 07:36:09 2002 +0000
@@ -26,15 +26,8 @@
 #include "multi.h"
 #include "gaim.h"
 
-#include "pixmaps/gnome_add.xpm"
-#include "pixmaps/gnome_preferences.xpm"
-#include "pixmaps/join.xpm"
-#include "pixmaps/gnome_remove.xpm"
 #include "pixmaps/cancel.xpm"
 #include "pixmaps/ok.xpm"
-#include "pixmaps/tb_redo.xpm"
-#include "pixmaps/tb_undo.xpm"
-#include "pixmaps/tb_refresh.xpm"
 /*#include "pixmaps/no_icon.xpm"*/
 
 #define LOGIN_STEPS 5
@@ -928,8 +921,6 @@
 static void mod_acct(GtkWidget *w, gpointer d)
 {
 	GtkTreeSelection *selection;
-	GtkTreeIter iter;
-	GtkTreeModel *model;
 
 	selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview));
 
@@ -1055,7 +1046,6 @@
 {
 	GtkTreeModel *model = (GtkTreeModel *)d;
 	GtkTreeIter iter;
-	GtkTreePath *path = gtk_tree_path_new_from_string(path_str);
 
 	struct aim_user *u = NULL;
 	struct prpl *p = NULL;
@@ -1094,12 +1084,10 @@
 static void acct_autologin(GtkCellRendererToggle *cell, gchar *path_str,
 						   gpointer d)
 {
- 	GtkTreeModel *model = (GtkTreeModel *)d;
- 	GtkTreeIter iter;
- 	GtkTreePath *path = gtk_tree_path_new_from_string(path_str);
+	GtkTreeModel *model = (GtkTreeModel *)d;
+	GtkTreeIter iter;
 
 	struct aim_user *u = NULL;
-	struct prpl *p = NULL;
 
 	gtk_tree_model_get_iter_from_string(model, &iter, path_str);
 	gtk_tree_model_get(model, &iter, COLUMN_DATA, &u, -1);
@@ -1148,8 +1136,6 @@
 static void del_acct(GtkWidget *w, gpointer d)
 {
 	GtkTreeSelection *selection;
-	GtkTreeIter iter;
-	GtkTreeModel *model;
 
 	selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview));
 
@@ -1179,7 +1165,6 @@
 	/* please kill me */
 	GtkWidget *vbox;
 	GtkWidget *hbox;
-	GtkWidget *vbox2;
 	GtkWidget *sw;
 	GtkWidget *button;	/* used for many things */
 	GtkWidget *sep;
@@ -1324,7 +1309,6 @@
 
 void account_online(struct gaim_connection *gc)
 {
-	int i;
 	struct signon_meter *meter = find_signon_meter(gc);
 	GtkTreeIter iter;