capuchin r86 - in trunk: . src/libcapuchin
- From: sebp svn gnome org
- To: svn-commits-list gnome org
- Subject: capuchin r86 - in trunk: . src/libcapuchin
- Date: Wed, 2 Apr 2008 22:15:03 +0100 (BST)
Author: sebp
Date: Wed Apr 2 22:15:02 2008
New Revision: 86
URL: http://svn.gnome.org/viewvc/capuchin?rev=86&view=rev
Log:
Removed UpdateFinished signal, because it's not needed anymore.
Modified:
trunk/ChangeLog
trunk/src/libcapuchin/AppObject.cs
trunk/src/libcapuchin/IAppObject.cs
Modified: trunk/src/libcapuchin/AppObject.cs
==============================================================================
--- trunk/src/libcapuchin/AppObject.cs (original)
+++ trunk/src/libcapuchin/AppObject.cs Wed Apr 2 22:15:02 2008
@@ -43,7 +43,6 @@
/// </summary>
public class AppObject : IDisposable, IAppObject
{
- public event UpdateFinishedHandler UpdateFinished;
public event InstallFinishedHandler InstallFinished;
public event StatusHandler Status;
@@ -147,8 +146,6 @@
this.ApplicationName = repo.application;
this.fillTagToPlugins ();
-
- this.OnUpdateFinished();
}
/// <returns>
@@ -520,14 +517,6 @@
}
}
- protected void OnUpdateFinished ()
- {
- if (UpdateFinished != null)
- {
- UpdateFinished ();
- }
- }
-
protected void OnInstallFinished (string id)
{
if (InstallFinished != null)
Modified: trunk/src/libcapuchin/IAppObject.cs
==============================================================================
--- trunk/src/libcapuchin/IAppObject.cs (original)
+++ trunk/src/libcapuchin/IAppObject.cs Wed Apr 2 22:15:02 2008
@@ -33,14 +33,12 @@
ExtractingPlugin
}
- public delegate void UpdateFinishedHandler ();
public delegate void InstallFinishedHandler (string plugin_id);
public delegate void StatusHandler (ActionType action, string plugin_id, double progress, int speed);
[Interface("org.gnome.Capuchin.AppObject")]
public interface IAppObject
{
- event UpdateFinishedHandler UpdateFinished;
event InstallFinishedHandler InstallFinished;
event StatusHandler Status;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]