Upgraded projects to XNA Game Studio 3.0 (CTP 2008-05); marked LoadGraphicsContent() and UnloadGraphicsContent() methods as obsolete in the custom Drawable and DrawableComponent classes; updated copyright date to include the year 2008; replaced the reference to the self-compiled SevenZip.dll with Lzma#.dll, which is the name of official binary for the same library; fixed formatting in various places

git-svn-id: file:///srv/devel/repo-conversion/nusu@70 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2008-05-14 19:06:06 +00:00
parent 0b1044105f
commit 4567b296ae
5 changed files with 7 additions and 7 deletions

View File

@ -25,7 +25,7 @@ using System.IO;
using NUnit.Framework;
using NUnit.Framework.SyntaxHelpers;
namespace Nuclex.Support {
/// <summary>Unit Test for the path helper class</summary>

View File

@ -342,8 +342,8 @@ namespace Nuclex.Support.Tracking {
tracker.AsyncIdleStateChanged +=
(EventHandler<IdleStateEventArgs>)delegate(object sender, IdleStateEventArgs arguments) {
tracker.Track(Waitable.EndedDummy);
};
tracker.Track(Waitable.EndedDummy);
};
test1.End();
}

View File

@ -96,8 +96,8 @@ namespace Nuclex.Support.Tracking {
/// Allows the specific request implementation to re-throw an exception if
/// the background process finished unsuccessfully
/// </summary>
protected virtual void ReraiseExceptions() {}
protected virtual void ReraiseExceptions() { }
}
/// <summary>Request providing a result that can be passed to the caller</summary>

View File

@ -226,7 +226,7 @@ namespace Nuclex.Support.Tracking {
Expect.Once.On(mockedSubscriber).
Method("Ended").
WithAnyArguments();
testSetProgression.Children[0].Waitable.End();
testSetProgression.Children[1].Waitable.End();

View File

@ -37,7 +37,7 @@ namespace Nuclex.Support.Tracking {
/// <param name="weight">Weighting of the progression's progress</param>
public WeightedWaitable(ProgressionType progression, float weight) {
this.progression = progression;
this.weight = weight;
this.weight = weight;
}
/// <summary>Progression being wrapped by this weighted progression</summary>