[tasque] Drop obsolete TimerID property from ITask
- From: Antonius Riha <antoniusri src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tasque] Drop obsolete TimerID property from ITask
- Date: Sat, 26 Jan 2013 19:23:48 +0000 (UTC)
commit 81152ff05810a0689904f31d530d10265b711b6d
Author: Antonius Riha <antoniusriha gmail com>
Date: Sat Jan 26 20:23:38 2013 +0100
Drop obsolete TimerID property from ITask
src/libtasque/AbstractTask.cs | 12 ------------
src/libtasque/ITask.cs | 10 ----------
src/libtasque/TaskGroupModel.cs | 3 ---
3 files changed, 0 insertions(+), 25 deletions(-)
---
diff --git a/src/libtasque/AbstractTask.cs b/src/libtasque/AbstractTask.cs
index 5675fd8..9e2cc3d 100644
--- a/src/libtasque/AbstractTask.cs
+++ b/src/libtasque/AbstractTask.cs
@@ -9,8 +9,6 @@ namespace Tasque
{
public abstract class AbstractTask : ITask
{
- private uint timerID = 0;
-
#region Properties
public abstract string Id
{
@@ -71,16 +69,6 @@ namespace Tasque
{
get;
}
-
- /// <value>
- /// The ID of the timer used to complete a task after being marked
- /// inactive.
- /// </value>
- public uint TimerID
- {
- get { return timerID; }
- set { timerID = value; }
- }
#endregion // Properties
#region Methods
diff --git a/src/libtasque/ITask.cs b/src/libtasque/ITask.cs
index 29adb2e..3bbf457 100644
--- a/src/libtasque/ITask.cs
+++ b/src/libtasque/ITask.cs
@@ -106,16 +106,6 @@ namespace Tasque
{
get;
}
-
- /// <value>
- /// The ID of the timer used to complete a task after being marked
- /// inactive.
- /// </value>
- uint TimerID
- {
- get;
- set;
- }
#endregion // Properties
diff --git a/src/libtasque/TaskGroupModel.cs b/src/libtasque/TaskGroupModel.cs
index 1ab1040..66f040c 100644
--- a/src/libtasque/TaskGroupModel.cs
+++ b/src/libtasque/TaskGroupModel.cs
@@ -277,7 +277,6 @@ namespace Tasque
NoteSupport = originalTask.NoteSupport;
State = originalTask.State;
Category = originalTask.Category;
- TimerID = originalTask.TimerID;
}
public int OriginalIndex { get; private set; }
@@ -304,8 +303,6 @@ namespace Tasque
public ICategory Category { get; set; }
- public uint TimerID { get; set; }
-
#region Explicit content
List<INote> ITask.Notes {
get { throw new NotSupportedException (); }
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]