summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2013-08-24 10:20:26 -0700
committerCosimo Cecchi <cosimoc@gnome.org>2013-08-24 10:20:26 -0700
commit6d2561ba2b8db8c0f1760a84dedd08686cfc693f (patch)
treeea14cdf9a225ecf9f1e433e1e677db25c7a53ac3
parentee0106898e47c4fc82794c8435940a43bb0d55e9 (diff)
downloadnautilus-6d2561ba2b8db8c0f1760a84dedd08686cfc693f.tar.gz
pathbar: set right return value for class method function pointer
We changed this to gboolean.
-rw-r--r--src/nautilus-pathbar.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nautilus-pathbar.h b/src/nautilus-pathbar.h
index 03d31ec66..984e0e3e0 100644
--- a/src/nautilus-pathbar.h
+++ b/src/nautilus-pathbar.h
@@ -47,11 +47,11 @@ struct _NautilusPathBarClass
{
GtkContainerClass parent_class;
- void (* path_clicked) (NautilusPathBar *path_bar,
- GFile *location);
- void (* path_event) (NautilusPathBar *path_bar,
- GdkEventButton *event,
- GFile *location);
+ void (* path_clicked) (NautilusPathBar *path_bar,
+ GFile *location);
+ gboolean (* path_event) (NautilusPathBar *path_bar,
+ GdkEventButton *event,
+ GFile *location);
};
GType nautilus_path_bar_get_type (void) G_GNUC_CONST;