diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2006-06-02 11:45:58 +0000 |
---|---|---|
committer | Emmanuele Bassi <ebassi@src.gnome.org> | 2006-06-02 11:45:58 +0000 |
commit | caf6c4196d0843a5112ea5a1e43677b68738a7a5 (patch) | |
tree | 8660d027e3bd204f4f33c8bfff93115eb8ebf7b4 | |
parent | baad131df714bbb0c9fcac56dc521037c48b1f61 (diff) | |
download | gtk+-caf6c4196d0843a5112ea5a1e43677b68738a7a5.tar.gz |
Fix a typo (spotted by Paolo Borelli and coverity).
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).
-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; |