mirror of
https://git.freebsd.org/ports.git
synced 2025-06-25 22:50:32 -04:00
While here: - Indentition fixes - Silence portlint warning about variables ordering - Convert to USES=localbase PR: 222015 [1] Submitted by: cpm
14 lines
491 B
Vala
14 lines
491 B
Vala
--- extensions/notes.vala.orig 2015-08-30 11:56:26 UTC
|
|
+++ extensions/notes.vala
|
|
@@ -116,7 +116,11 @@ namespace ClipNotes {
|
|
if (current_note == note) {
|
|
current_note = null;
|
|
}
|
|
+#if VALA_0_36
|
|
+ notes_list_store.remove (ref iter);
|
|
+#else
|
|
notes_list_store.remove (iter);
|
|
+#endif
|
|
break;
|
|
}
|
|
} while (notes_list_store.iter_next (ref iter));
|