[longomatch/fakelive: 12/24] Delete redundant code
- From: Andoni Morales Alastruey <amorales src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [longomatch/fakelive: 12/24] Delete redundant code
- Date: Thu, 4 Mar 2010 21:42:56 +0000 (UTC)
commit 5911f9de82a21ea2b278cab90f42869dab1a1990
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date: Thu Feb 18 00:26:42 2010 +0100
Delete redundant code
CesarPlayer/Gui/CapturerBin.cs | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
---
diff --git a/CesarPlayer/Gui/CapturerBin.cs b/CesarPlayer/Gui/CapturerBin.cs
index 8d88c12..72395a5 100644
--- a/CesarPlayer/Gui/CapturerBin.cs
+++ b/CesarPlayer/Gui/CapturerBin.cs
@@ -56,16 +56,16 @@ namespace LongoMatch.Gui
public string OutputFile {
set{
- this.capturer.OutputFile= value;
+ capturer.OutputFile= value;
}
}
public uint VideoBitrate {
- set{this.capturer.VideoBitrate=value;}
+ set{capturer.VideoBitrate=value;}
}
public uint AudioBitrate {
- set{this.capturer.AudioBitrate=value;}
+ set{capturer.AudioBitrate=value;}
}
public int CurrentTime {
@@ -74,42 +74,42 @@ namespace LongoMatch.Gui
}
}
public void TogglePause(){
- this.capturer.TogglePause();
+ capturer.TogglePause();
}
public void Start(){
- this.capturer.Start();
+ capturer.Start();
}
public void Stop(){
- this.capturer.Stop();
+ capturer.Stop();
}
public void SetVideoEncoder(LongoMatch.Video.Capturer.GccVideoEncoderType type){
- this.capturer.SetVideoEncoder(type);
+ capturer.SetVideoEncoder(type);
}
public void SetAudioEncoder(LongoMatch.Video.Capturer.GccAudioEncoderType type){
- this.capturer.SetAudioEncoder(type);
+ capturer.SetAudioEncoder(type);
}
public void SetVideoMuxer(LongoMatch.Video.Capturer.GccVideoMuxerType type){
- this.capturer.SetVideoMuxer(type);
+ capturer.SetVideoMuxer(type);
}
protected virtual void OnRecbuttonClicked (object sender, System.EventArgs e)
{
- this.Start();
+ Start();
}
protected virtual void OnPausebuttonClicked (object sender, System.EventArgs e)
{
- this.TogglePause();
+ TogglePause();
}
protected virtual void OnStopbuttonClicked (object sender, System.EventArgs e)
{
- this.Stop();
+ Stop();
}
protected virtual void OnTick (int ellapsedTime){
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]