* Added the operation cancel_all_operations to the progress objects
[modest] / src / modest-progress-object.c
index 44cd6d1..6de3451 100644 (file)
@@ -51,6 +51,12 @@ modest_progress_object_cancel_current_operation (ModestProgressObject *self)
        return MODEST_PROGRESS_OBJECT_GET_IFACE (self)->cancel_current_operation_func (self);
 }
 
+void 
+modest_progress_object_cancel_all_operations (ModestProgressObject *self)
+{
+       return MODEST_PROGRESS_OBJECT_GET_IFACE (self)->cancel_all_operations_func (self);
+}
+
 guint
 modest_progress_object_num_pending_operations (ModestProgressObject *self) 
 {
@@ -90,5 +96,3 @@ modest_progress_object_get_type (void)
        }
        return my_type;
 }
-
-