From: <je...@us...> - 2007-05-22 16:28:35
|
Revision: 1387 http://cs-sdl.svn.sourceforge.net/cs-sdl/?rev=1387&view=rev Author: jendave Date: 2007-05-22 09:28:33 -0700 (Tue, 22 May 2007) Log Message: ----------- Remove unused files. Fix obselete warning Modified Paths: -------------- trunk/scsharp/src/SCSharpLib/UI/SmackerPlayer.cs Removed Paths: ------------- trunk/scsharp/src/SCSharpLib/Properties/Settings.Designer.cs trunk/scsharp/src/SCSharpLib/Properties/Settings.settings Deleted: trunk/scsharp/src/SCSharpLib/Properties/Settings.Designer.cs =================================================================== --- trunk/scsharp/src/SCSharpLib/Properties/Settings.Designer.cs 2007-05-22 15:06:40 UTC (rev 1386) +++ trunk/scsharp/src/SCSharpLib/Properties/Settings.Designer.cs 2007-05-22 16:28:33 UTC (rev 1387) @@ -1,26 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:2.0.50727.42 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -namespace SCSharp.Properties { - - - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "8.0.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { - - private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default { - get { - return defaultInstance; - } - } - } -} Deleted: trunk/scsharp/src/SCSharpLib/Properties/Settings.settings =================================================================== --- trunk/scsharp/src/SCSharpLib/Properties/Settings.settings 2007-05-22 15:06:40 UTC (rev 1386) +++ trunk/scsharp/src/SCSharpLib/Properties/Settings.settings 2007-05-22 16:28:33 UTC (rev 1387) @@ -1,7 +0,0 @@ -<?xml version='1.0' encoding='utf-8'?> -<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)"> - <Profiles> - <Profile Name="(Default)" /> - </Profiles> - <Settings /> -</SettingsFile> Modified: trunk/scsharp/src/SCSharpLib/UI/SmackerPlayer.cs =================================================================== --- trunk/scsharp/src/SCSharpLib/UI/SmackerPlayer.cs 2007-05-22 15:06:40 UTC (rev 1386) +++ trunk/scsharp/src/SCSharpLib/UI/SmackerPlayer.cs 2007-05-22 16:28:33 UTC (rev 1387) @@ -85,7 +85,8 @@ if (state == State.PAUSED) { state = State.PLAYING; - decoderThread.Resume(); + // TODO This is obselete + //decoderThread.Resume(); } else if (state == State.STOPPED) { @@ -125,7 +126,8 @@ } state = State.PAUSED; - decoderThread.Suspend(); + //TODO this is obselete + //decoderThread.Suspend(); } /// <summary> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |