From 56a2cb91a4a75ef761c004a682c847a419e4de05 Mon Sep 17 00:00:00 2001 From: yorickr Date: Mon, 2 Nov 2015 17:37:50 +0100 Subject: [PATCH] Removed useless arguments --- MusicPlayer/MusicPlayer/APIHandler.cs | 6 +- .../Form1.Designer.cs.BACKUP.11468.cs | 48 +++++++++ .../Form1.Designer.cs.BASE.11468.cs | 39 ++++++++ .../Form1.Designer.cs.LOCAL.11468.cs | 0 .../Form1.Designer.cs.REMOTE.11468.cs | 48 +++++++++ .../MusicPlayer/Form1.Designer.cs.orig | 48 +++++++++ .../MusicPlayer/MusicPlayer.csproj.orig | 99 +++++++++++++++++++ 7 files changed, 285 insertions(+), 3 deletions(-) create mode 100644 MusicPlayer/MusicPlayer/Form1.Designer.cs.BACKUP.11468.cs create mode 100644 MusicPlayer/MusicPlayer/Form1.Designer.cs.BASE.11468.cs create mode 100644 MusicPlayer/MusicPlayer/Form1.Designer.cs.LOCAL.11468.cs create mode 100644 MusicPlayer/MusicPlayer/Form1.Designer.cs.REMOTE.11468.cs create mode 100644 MusicPlayer/MusicPlayer/Form1.Designer.cs.orig create mode 100644 MusicPlayer/MusicPlayer/MusicPlayer.csproj.orig diff --git a/MusicPlayer/MusicPlayer/APIHandler.cs b/MusicPlayer/MusicPlayer/APIHandler.cs index e5ebc58..aa18b34 100644 --- a/MusicPlayer/MusicPlayer/APIHandler.cs +++ b/MusicPlayer/MusicPlayer/APIHandler.cs @@ -114,7 +114,7 @@ namespace MusicPlayer { List albumlist = new List(); - JObject o = nw.SendString("getalbums?id=hallo"); + JObject o = nw.SendString("getalbums?"); if (o["result"].ToString() == "OK") { for (int i = 0; i < o["albums"].Count(); i++) @@ -129,7 +129,7 @@ namespace MusicPlayer public List GetYears() { List yearlist = new List (); - JObject o = nw.SendString("getyears?id=hallo"); + JObject o = nw.SendString("getyears?"); if (o["result"].ToString() == "OK") { for (int i = 0; i < o["years"].Count(); i++) @@ -143,7 +143,7 @@ namespace MusicPlayer public List GetGenres() { List genreslist = new List(); - JObject o = nw.SendString("getgenres?id=hallo"); + JObject o = nw.SendString("getgenres?"); if (o["result"].ToString() == "OK") { for (int i = 0; i < o["genres"].Count(); i++) diff --git a/MusicPlayer/MusicPlayer/Form1.Designer.cs.BACKUP.11468.cs b/MusicPlayer/MusicPlayer/Form1.Designer.cs.BACKUP.11468.cs new file mode 100644 index 0000000..397e6d1 --- /dev/null +++ b/MusicPlayer/MusicPlayer/Form1.Designer.cs.BACKUP.11468.cs @@ -0,0 +1,48 @@ +namespace MusicPlayer +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.SuspendLayout(); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(284, 261); + this.Name = "Form1"; + this.Text = "Form1"; + this.Load += new System.EventHandler(this.Form1_Load); + this.ResumeLayout(false); + + } + + #endregion + } +} + diff --git a/MusicPlayer/MusicPlayer/Form1.Designer.cs.BASE.11468.cs b/MusicPlayer/MusicPlayer/Form1.Designer.cs.BASE.11468.cs new file mode 100644 index 0000000..a88eefc --- /dev/null +++ b/MusicPlayer/MusicPlayer/Form1.Designer.cs.BASE.11468.cs @@ -0,0 +1,39 @@ +namespace MusicPlayer +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Text = "Form1"; + } + + #endregion + } +} + diff --git a/MusicPlayer/MusicPlayer/Form1.Designer.cs.LOCAL.11468.cs b/MusicPlayer/MusicPlayer/Form1.Designer.cs.LOCAL.11468.cs new file mode 100644 index 0000000..e69de29 diff --git a/MusicPlayer/MusicPlayer/Form1.Designer.cs.REMOTE.11468.cs b/MusicPlayer/MusicPlayer/Form1.Designer.cs.REMOTE.11468.cs new file mode 100644 index 0000000..397e6d1 --- /dev/null +++ b/MusicPlayer/MusicPlayer/Form1.Designer.cs.REMOTE.11468.cs @@ -0,0 +1,48 @@ +namespace MusicPlayer +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.SuspendLayout(); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(284, 261); + this.Name = "Form1"; + this.Text = "Form1"; + this.Load += new System.EventHandler(this.Form1_Load); + this.ResumeLayout(false); + + } + + #endregion + } +} + diff --git a/MusicPlayer/MusicPlayer/Form1.Designer.cs.orig b/MusicPlayer/MusicPlayer/Form1.Designer.cs.orig new file mode 100644 index 0000000..397e6d1 --- /dev/null +++ b/MusicPlayer/MusicPlayer/Form1.Designer.cs.orig @@ -0,0 +1,48 @@ +namespace MusicPlayer +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.SuspendLayout(); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(284, 261); + this.Name = "Form1"; + this.Text = "Form1"; + this.Load += new System.EventHandler(this.Form1_Load); + this.ResumeLayout(false); + + } + + #endregion + } +} + diff --git a/MusicPlayer/MusicPlayer/MusicPlayer.csproj.orig b/MusicPlayer/MusicPlayer/MusicPlayer.csproj.orig new file mode 100644 index 0000000..b5baecf --- /dev/null +++ b/MusicPlayer/MusicPlayer/MusicPlayer.csproj.orig @@ -0,0 +1,99 @@ + + + + + Debug + AnyCPU + {E2B99339-3251-48BE-91C9-FAB21CD07A39} + WinExe + Properties + MusicPlayer + MusicPlayer + v4.5.2 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + Form + + + + + + MainForm.cs + + + + +<<<<<<< HEAD + + MainForm.cs +======= + + Form1.cs +>>>>>>> origin/api + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + +