diff options
author | Thibault Saunier <thibault.saunier@collabora.com> | 2013-08-19 15:12:48 -0400 |
---|---|---|
committer | Thibault Saunier <thibault.saunier@collabora.com> | 2013-08-19 15:18:06 -0400 |
commit | 41d86292c9cfa8a28ccc88fc7e3d74f93ce5b864 (patch) | |
tree | ee04663acfdaff981f89d3c7c44d488e9bc2148b /ges/ges-formatter.h | |
parent | 9d30f0579822e5e0a38383532637a8bb8ef3e61b (diff) |
formatter: Remove the unsed can_save_uri vmethod
This virtual method does not make much sense right now, we might need it
again later, but most probably with a sensibly different API so removing
it for now.
Diffstat (limited to 'ges/ges-formatter.h')
-rw-r--r-- | ges/ges-formatter.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ges/ges-formatter.h b/ges/ges-formatter.h index d6eabf10..dc9b6c51 100644 --- a/ges/ges-formatter.h +++ b/ges/ges-formatter.h @@ -64,7 +64,6 @@ struct _GESFormatter { }; typedef gboolean (*GESFormatterCanLoadURIMethod) (GESFormatter *dummy_instance, const gchar * uri, GError **error); -typedef gboolean (*GESFormatterCanSaveURIMethod) (GESFormatter *dummy_instance, const gchar * uri, GError **error); /** * GESFormatterLoadFromURIMethod: @@ -108,7 +107,6 @@ typedef gboolean (*GESFormatterSaveToURIMethod) (GESFormatter *formatter, * GESFormatterClass: * @parent_class: the parent class structure * @can_load_uri: Whether the URI can be loaded - * @can_save_uri: Whether the URI can be saved * @load_from_uri: class method to deserialize data from a URI * @save_to_uri: class method to serialize data to a URI * @@ -119,7 +117,6 @@ struct _GESFormatterClass { GInitiallyUnownedClass parent_class; GESFormatterCanLoadURIMethod can_load_uri; - GESFormatterCanSaveURIMethod can_save_uri; GESFormatterLoadFromURIMethod load_from_uri; GESFormatterSaveToURIMethod save_to_uri; |