File denemo-object.c.patch of Package denemo
diff -up denemo-2.6.0/src/command/object.c.orig denemo-2.6.0/src/command/object.c
--- denemo-2.6.0/src/command/object.c.orig 2022-03-11 13:15:53.591207918 +0100
+++ denemo-2.6.0/src/command/object.c 2025-08-10 09:03:14.643412776 +0200
@@ -64,8 +64,8 @@ static gboolean compare_notes (GList *no
{
if (!compare_note (notes1->data, notes2->data))
return FALSE;
- notes1=notes1->next;
- notes2=notes2->next;
+ notes1=notes1->next;
+ notes2=notes2->next;
}
return notes1 == notes2;
}
@@ -78,8 +78,8 @@ static gboolean compare_dynamics (GList
{
if (!compare_gstring (notes1->data, notes2->data))
return FALSE;
- notes1=notes1->next;
- notes2=notes2->next;
+ notes1=notes1->next;
+ notes2=notes2->next;
}
return notes1 == notes2;
}
@@ -939,15 +939,15 @@ show_window (GtkWidget * w)
}
static void
-set_false (GtkWidget * button, gboolean * bool)
+set_false (GtkWidget * button, gboolean * b)
{
#ifndef G_OS_WIN32
show_window (button);
#endif
gtk_widget_destroy (button);
- if (*bool)
+ if (*b)
score_status (Denemo.project, TRUE);
- *bool = FALSE;
+ *b = FALSE;
}
static void
chuck_object_editor (void)