aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@src.gnome.org>2008-09-29 13:54:24 +0800
committerDiego Escalante Urrelo <diegoe@src.gnome.org>2008-09-29 13:54:24 +0800
commit3b0ff58340c2464bf5df073e86f51e15c3cceaaa (patch)
tree519e7d9c0d3811ffa7b443b93c76915c0909c0df
parent1252239ef90a65845487fddbe620996533a4faa3 (diff)
downloadgsoc2013-epiphany-3b0ff58340c2464bf5df073e86f51e15c3cceaaa.tar
gsoc2013-epiphany-3b0ff58340c2464bf5df073e86f51e15c3cceaaa.tar.gz
gsoc2013-epiphany-3b0ff58340c2464bf5df073e86f51e15c3cceaaa.tar.bz2
gsoc2013-epiphany-3b0ff58340c2464bf5df073e86f51e15c3cceaaa.tar.lz
gsoc2013-epiphany-3b0ff58340c2464bf5df073e86f51e15c3cceaaa.tar.xz
gsoc2013-epiphany-3b0ff58340c2464bf5df073e86f51e15c3cceaaa.tar.zst
gsoc2013-epiphany-3b0ff58340c2464bf5df073e86f51e15c3cceaaa.zip
Avoid the parsing of non doc comments
svn path=/trunk/; revision=8560
-rw-r--r--embed/ephy-encodings.c2
-rw-r--r--lib/ephy-password-dialog.c2
-rw-r--r--src/bookmarks/ephy-bookmarks-import.c2
-rw-r--r--src/ephy-link-action.c6
-rw-r--r--src/pdm-dialog.c2
5 files changed, 7 insertions, 7 deletions
diff --git a/embed/ephy-encodings.c b/embed/ephy-encodings.c
index b6aa7e680..aa2950233 100644
--- a/embed/ephy-encodings.c
+++ b/embed/ephy-encodings.c
@@ -43,7 +43,7 @@ struct _EphyEncodingsPrivate
GSList *recent;
};
-/**
+/*
* translatable encodings titles
* NOTE: if you add/remove/change encodings, please also update the schema in
* epiphany.schemas.in
diff --git a/lib/ephy-password-dialog.c b/lib/ephy-password-dialog.c
index 74195bf53..34a4c931a 100644
--- a/lib/ephy-password-dialog.c
+++ b/lib/ephy-password-dialog.c
@@ -86,7 +86,7 @@ enum
G_DEFINE_TYPE (EphyPasswordDialog, ephy_password_dialog, GTK_TYPE_MESSAGE_DIALOG)
-/**
+/*
* Calculate the quality of a password. The algorithm used is taken
* directly from mozilla:
* mozilla/security/manager/pki/resources/content/password.js
diff --git a/src/bookmarks/ephy-bookmarks-import.c b/src/bookmarks/ephy-bookmarks-import.c
index 412223a6f..272026f84 100644
--- a/src/bookmarks/ephy-bookmarks-import.c
+++ b/src/bookmarks/ephy-bookmarks-import.c
@@ -614,7 +614,7 @@ ns_get_bookmark_item (FILE *f, GString *name, GString *url)
return ret;
}
-/**
+/*
* This function replaces some weird elements
* like &amp; &le;, etc..
* More info : http://www.w3.org/TR/html4/charset.html#h-5.3.2
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.
*/
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c
index be8d7b2df..58ebfa0d8 100644
--- a/src/pdm-dialog.c
+++ b/src/pdm-dialog.c
@@ -1446,7 +1446,7 @@ pdm_dialog_init (PdmDialog *dialog)
g_signal_connect (window, "response",
G_CALLBACK (pdm_dialog_response_cb), dialog);
- /**
+ /*
* Group all Properties and Remove buttons in the same size group to
* avoid the little jerk you get otherwise when switching pages because
* one set of buttons is wider than another.