diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 6 | ||||
-rw-r--r-- | gtk/gtkrecentmanager.c | 2 |
3 files changed, 13 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2006-06-02 Emmanuele Bassi <ebassi@gnome.org> + + * gtk/gtkrecentmanager.c + (gtk_recent_info_get_application_info): Fix a typo (spotted by + Paolo Borelli and coverity). + 2006-06-01 Matthias Clasen <mclasen@redhat.com> * tests/testnotebookdnd.c: Small tweaks to test more things. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 0c7813456f..d0505a9fad 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2006-06-02 Emmanuele Bassi <ebassi@gnome.org> + + * gtk/gtkrecentmanager.c + (gtk_recent_info_get_application_info): Fix a typo (spotted by + Paolo Borelli and coverity). + 2006-06-01 Matthias Clasen <mclasen@redhat.com> * tests/testnotebookdnd.c: Small tweaks to test more things. diff --git a/gtk/gtkrecentmanager.c b/gtk/gtkrecentmanager.c index e047f29bc2..717936222a 100644 --- a/gtk/gtkrecentmanager.c +++ b/gtk/gtkrecentmanager.c @@ -1787,7 +1787,7 @@ gtk_recent_info_get_application_info (GtkRecentInfo *info, if (count) *count = ai->count; - if (time) + if (time_) *time_ = ai->stamp; return TRUE; |