aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/profile_dlg.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-11-10 12:05:25 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-11-10 12:05:25 +0000
commit0dbfde8b6de9977bda3094940dc8b11302f75a47 (patch)
treef3febdc4d98050c226ef2a682e8534319f36d1fb /gtk/profile_dlg.c
parent88afdd95256a3b0a6cf755475e8ac32c8a0f87a8 (diff)
Removed some unused variables and unused assignments.
svn path=/trunk/; revision=30918
Diffstat (limited to 'gtk/profile_dlg.c')
-rw-r--r--gtk/profile_dlg.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gtk/profile_dlg.c b/gtk/profile_dlg.c
index 510f26888e..8652a33abf 100644
--- a/gtk/profile_dlg.c
+++ b/gtk/profile_dlg.c
@@ -296,7 +296,6 @@ profile_apply(GtkWidget *main_w, GtkTreeView *profile_l, gboolean destroy)
/* First validate all profile names */
fl1 = g_list_first(edited_profiles);
while (fl1) {
- found = FALSE;
profile1 = (profile_def *) fl1->data;
g_strstrip(profile1->name);
if (profile_is_invalid_name(profile1->name)) {
@@ -308,7 +307,6 @@ profile_apply(GtkWidget *main_w, GtkTreeView *profile_l, gboolean destroy)
/* Then create new and rename changed */
fl1 = g_list_first(edited_profiles);
while (fl1) {
- found = FALSE;
profile1 = (profile_def *) fl1->data;
g_strstrip(profile1->name);
if (profile1->status == PROF_STAT_NEW) {