mirror of
https://git.freebsd.org/ports.git
synced 2025-07-16 16:59:17 -04:00
While here: - Indentition fixes - Silence portlint warning about variables ordering - Convert to USES=localbase PR: 222015 [1] Submitted by: cpm
14 lines
561 B
Vala
14 lines
561 B
Vala
--- extensions/adblock/widgets.vala.orig 2015-08-30 11:56:26 UTC
|
|
+++ extensions/adblock/widgets.vala
|
|
@@ -227,7 +227,11 @@ namespace Adblock {
|
|
liststore.get (iter, 0, out sub);
|
|
if (sub.mutable) {
|
|
config.remove (sub);
|
|
+#if VALA_0_36
|
|
+ liststore.remove (ref iter);
|
|
+#else
|
|
liststore.remove (iter);
|
|
+#endif
|
|
return true;
|
|
}
|
|
}
|