diff options
author | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-09-29 13:54:41 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-09-29 13:54:41 +0800 |
commit | 7d32cee09736b1a02c75adc8974ffeb763cc7ce8 (patch) | |
tree | bf5d2f30c2140585ed3770c596c6c210cfa57b5b | |
parent | 3b0ff58340c2464bf5df073e86f51e15c3cceaaa (diff) | |
download | gsoc2013-epiphany-7d32cee09736b1a02c75adc8974ffeb763cc7ce8.tar gsoc2013-epiphany-7d32cee09736b1a02c75adc8974ffeb763cc7ce8.tar.gz gsoc2013-epiphany-7d32cee09736b1a02c75adc8974ffeb763cc7ce8.tar.bz2 gsoc2013-epiphany-7d32cee09736b1a02c75adc8974ffeb763cc7ce8.tar.lz gsoc2013-epiphany-7d32cee09736b1a02c75adc8974ffeb763cc7ce8.tar.xz gsoc2013-epiphany-7d32cee09736b1a02c75adc8974ffeb763cc7ce8.tar.zst gsoc2013-epiphany-7d32cee09736b1a02c75adc8974ffeb763cc7ce8.zip |
Sync comment parameters with actual parameters
svn path=/trunk/; revision=8561
-rw-r--r-- | src/ephy-extensions-manager.c | 8 | ||||
-rw-r--r-- | src/ephy-session.c | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/ephy-extensions-manager.c b/src/ephy-extensions-manager.c index 60d7dfe6e..790bf0067 100644 --- a/src/ephy-extensions-manager.c +++ b/src/ephy-extensions-manager.c @@ -140,9 +140,9 @@ G_DEFINE_TYPE_WITH_CODE (EphyExtensionsManager, ephy_extensions_manager, G_TYPE_ /** * ephy_extensions_manager_load: * @manager: an #EphyExtensionsManager - * @name: identifier of the extension to load + * @identifier: identifier of the extension to load * - * Loads the @name extension. + * Loads the extension corresponding to @identifier. **/ void ephy_extensions_manager_load (EphyExtensionsManager *manager, @@ -171,9 +171,9 @@ ephy_extensions_manager_load (EphyExtensionsManager *manager, /** * ephy_extensions_manager_unload: * @manager: an #EphyExtensionsManager - * @name: filename of extension to unload, minus "lib" and "extension.so" + * @identifier: filename of extension to unload, minus "lib" and "extension.so" * - * Unloads the extension specified by @name. + * Unloads the extension specified by @identifier. * * The extension with the same filename can afterwards be reloaded. However, * if any GTypes within the extension have changed parent types, Epiphany must diff --git a/src/ephy-session.c b/src/ephy-session.c index 3c117ad6b..7dc6be089 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -1510,7 +1510,7 @@ ephy_session_load (EphySession *session, /** * ephy_session_get_windows: - * @ephy_session: the #EphySession + * @session: the #EphySession * * Returns: the list of open #EphyWindow:s. **/ @@ -1524,7 +1524,7 @@ ephy_session_get_windows (EphySession *session) /** * ephy_session_add_window: - * @ephy_session: a #EphySession + * @session: a #EphySession * @window: a #EphyWindow * * Add a tool window to the session. #EphyWindow take care of adding |