diff options
author | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-09-29 13:54:24 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-09-29 13:54:24 +0800 |
commit | 3b0ff58340c2464bf5df073e86f51e15c3cceaaa (patch) | |
tree | 519e7d9c0d3811ffa7b443b93c76915c0909c0df /src/ephy-link-action.c | |
parent | 1252239ef90a65845487fddbe620996533a4faa3 (diff) | |
download | gsoc2013-epiphany-3b0ff58340c2464bf5df073e86f51e15c3cceaaa.tar.gz gsoc2013-epiphany-3b0ff58340c2464bf5df073e86f51e15c3cceaaa.tar.zst gsoc2013-epiphany-3b0ff58340c2464bf5df073e86f51e15c3cceaaa.zip |
Avoid the parsing of non doc comments
svn path=/trunk/; revision=8560
Diffstat (limited to 'src/ephy-link-action.c')
-rw-r--r-- | src/ephy-link-action.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ephy-link-action.c b/src/ephy-link-action.c index f5d9fe7e9..a6b39437c 100644 --- a/src/ephy-link-action.c +++ b/src/ephy-link-action.c @@ -51,7 +51,7 @@ proxy_button_release_event_cb (GtkButton *button, GdkEventButton *event, EphyLinkAction *action) { - /** + /* * We do not use ephy_gui_is_middle_click() here because * that also catches ctrl + left_click which already * triggers an activate event for all proxies. @@ -69,7 +69,7 @@ get_event_widget (GtkWidget *proxy) { GtkWidget *widget; - /** + /* * Finding the interesting widget requires internal knowledge of * the widgets in question. This can't be helped, but by keeping * the sneaky code in one place, it can easily be updated. @@ -81,7 +81,7 @@ get_event_widget (GtkWidget *proxy) } else if (GTK_IS_MENU_TOOL_BUTTON (proxy)) { - /** + /* * The menu tool button's button is the first child * of the child hbox. */ |