gtkrecentmanager: Avoid confusion between the meta-data and the actual resource.

Fixed the documentation to clarify that gtk_recent_info_get_visited
and gtk_recent_info_get_modified are actually about the recent info
meta-data rather than the resource itself.

https://bugzilla.gnome.org/show_bug.cgi?id=703827
This commit is contained in:
aakash 2013-07-09 03:11:27 +05:30 committed by Matthias Clasen
parent d837803fcf
commit fc6e725d2f

View File

@ -1660,8 +1660,8 @@ gtk_recent_info_get_added (GtkRecentInfo *info)
* gtk_recent_info_get_modified: * gtk_recent_info_get_modified:
* @info: a #GtkRecentInfo * @info: a #GtkRecentInfo
* *
* Gets the timestamp (seconds from system's Epoch) when the resource * Gets the timestamp (seconds from system's Epoch) when the meta-data
* was last modified. * for the resource was last modified.
* *
* Return value: the number of seconds elapsed from system's Epoch when * Return value: the number of seconds elapsed from system's Epoch when
* the resource was last modified, or -1 on failure. * the resource was last modified, or -1 on failure.
@ -1680,8 +1680,8 @@ gtk_recent_info_get_modified (GtkRecentInfo *info)
* gtk_recent_info_get_visited: * gtk_recent_info_get_visited:
* @info: a #GtkRecentInfo * @info: a #GtkRecentInfo
* *
* Gets the timestamp (seconds from system's Epoch) when the resource * Gets the timestamp (seconds from system's Epoch) when the meta-data
* was last visited. * for the resource was last visited.
* *
* Return value: the number of seconds elapsed from system's Epoch when * Return value: the number of seconds elapsed from system's Epoch when
* the resource was last visited, or -1 on failure. * the resource was last visited, or -1 on failure.