Branch: refs/heads/master
Author: andy5995 <andy400-dev(a)yahoo.com>
Committer: andy5995 <andy400-dev(a)yahoo.com>
Date: Fri, 25 Jan 2019 00:29:47 UTC
Commit: e3a0dd01ddaaeb54815d8a26d4c114ea0a0a1f6e
https://github.com/geany/geany-plugins/commit/e3a0dd01ddaaeb54815d8a26d4c11…
Log Message:
-----------
debugger/bptree.c:fix compiler warning
I noticed this warning on buster and slack current, both using gcc8.
This fixes the warning (caused by mixed tabs/spaces indentation):
bptree.c: In function ‘on_hitscount_changed’:
bptree.c:373:5: warning: this ‘if’ clause does not guard...
[-Wmisleading-indentation]
if (oldcount != count)
^~
bptree.c:376:2: note: ...this statement, but the latter is misleadingly
indented as if it were guarded by the ‘if’
gtk_tree_path_free(tree_path);
^~~~~~~~~~~~~~~~~~
Modified Paths:
--------------
debugger/src/bptree.c
Modified: debugger/src/bptree.c
6 lines changed, 3 insertions(+), 3 deletions(-)
===================================================================
@@ -370,9 +370,9 @@ static void on_hitscount_changed(GtkCellRendererText *renderer, gchar *path, gch
LINE, &line,
-1);
- if (oldcount != count)
- breaks_set_hits_count(file, line, count);
-
+ if (oldcount != count)
+ breaks_set_hits_count(file, line, count);
+
gtk_tree_path_free(tree_path);
g_free(file);
}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: GitHub <noreply(a)github.com>
Date: Mon, 07 Jan 2019 06:35:33 UTC
Commit: 5040120981902f82a119111d294467e124c89812
https://github.com/geany/geany-plugins/commit/5040120981902f82a119111d29446…
Log Message:
-----------
Merge pull request #812 from plonibarploni/patch-1
Update README
Modified Paths:
--------------
webhelper/README
Modified: webhelper/README
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -28,7 +28,7 @@ Requirements
This plugin requires GTK+ (>= 2.16), GLib (>= 2.16), GIO (>= 2.18),
GdkPixbuf (>= 2.0), WebKitGTK (>= 1.1.18), and obviously Geany (>= 0.20) to
-work. If you indent to build it yourself, you will need to get the development
+work. If you intend to build it yourself, you will need to get the development
files of these libraries. You can find these packages at http://www.geany.org/,
http://www.gtk.org/ and http://www.webkitgtk.org/.
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: plonibarploni <44826203+plonibarploni(a)users.noreply.github.com>
Committer: GitHub <noreply(a)github.com>
Date: Mon, 07 Jan 2019 05:58:30 UTC
Commit: a9be8b82fdf366e9b5e92ad709e7caf207a31182
https://github.com/geany/geany-plugins/commit/a9be8b82fdf366e9b5e92ad709e7c…
Log Message:
-----------
Update README
spellcheck
Modified Paths:
--------------
webhelper/README
Modified: webhelper/README
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -28,7 +28,7 @@ Requirements
This plugin requires GTK+ (>= 2.16), GLib (>= 2.16), GIO (>= 2.18),
GdkPixbuf (>= 2.0), WebKitGTK (>= 1.1.18), and obviously Geany (>= 0.20) to
-work. If you indent to build it yourself, you will need to get the development
+work. If you intend to build it yourself, you will need to get the development
files of these libraries. You can find these packages at http://www.geany.org/,
http://www.gtk.org/ and http://www.webkitgtk.org/.
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).