-
-
Notifications
You must be signed in to change notification settings - Fork 346
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix variable names and doc wording #1849
Conversation
@@ -265,7 +265,7 @@ public override string Message | |||
// our base class? | |||
|
|||
public ModNotInstalledKraken(string mod, string reason = null, Exception inner_exception = null) | |||
:base(reason, inner_exception) | |||
: base(reason, inner_exception) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be innerException, too?
I don't think the forum thread link in the Contribution guidelines page has been updated to the new thread. |
Rebased and updated |
@@ -481,7 +476,7 @@ private void InitializeComponent() | |||
this.ModList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; | |||
this.ModList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { | |||
this.Installed, | |||
this.UpdateCol, | |||
this.Update, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert, or expand name to UpdateColumn or UpdateSelection or some such. "Update" gives us build warnings.
Main.Designer.cs(1614,44): warning CS0108: `CKAN.Main.Update' hides inherited member `System.Windows.Forms.Control.Update()'. Use the new keyword if hiding was intended
/usr/lib/mono/4.5-api/System.Windows.Forms.dll (Location of the symbol related to previous warning)
Main.Designer.cs(1600,44): warning CS0169: The private field `CKAN.Main.UpdateCol' is never used
Whew! That's a lot to review! |
Yep, and thanks for doing so! I made the changes related to points you brought up. |
This is not exhaustive, but a step in the direction of conforming all source to use the conventions that were suggested by Microsoft.