diff options
Diffstat (limited to 'gtk/gtkrecentmanager.h')
-rw-r--r-- | gtk/gtkrecentmanager.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk/gtkrecentmanager.h b/gtk/gtkrecentmanager.h index 5b89774407..b97c09bd5d 100644 --- a/gtk/gtkrecentmanager.h +++ b/gtk/gtkrecentmanager.h @@ -57,8 +57,8 @@ typedef struct _GtkRecentManagerPrivate GtkRecentManagerPrivate; * @app_name: the name of the application that is registering this recently * used resource; * @app_exec: command line used to launch this resource; may contain the - * "%f" and "%u" escape characters which will be expanded - * to the resource file path and URI respectively when the command line + * "%f" and "%u" escape characters which will be expanded + * to the resource file path and URI respectively when the command line * is retrieved; * @groups: a vector of strings containing groups names; * @is_private: whether this resource should be displayed only by the @@ -71,14 +71,14 @@ struct _GtkRecentData { gchar *display_name; gchar *description; - + gchar *mime_type; - + gchar *app_name; gchar *app_exec; - + gchar **groups; - + gboolean is_private; }; @@ -86,7 +86,7 @@ struct _GtkRecentManager { /*< private >*/ GObject parent_instance; - + GtkRecentManagerPrivate *priv; }; @@ -94,9 +94,9 @@ struct _GtkRecentManagerClass { /*< private >*/ GObjectClass parent_class; - + void (*changed) (GtkRecentManager *manager); - + /* padding for future expansion */ void (*_gtk_recent1) (void); void (*_gtk_recent2) (void); |