Skip to content

Commit

Permalink
Fix spacing. Add full stops
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.code.sf.net/p/autowikibrowser/code/AWB@12185 5227b50d-9349-4574-b055-4b0a7525e11c
  • Loading branch information
reedy committed Nov 30, 2017
1 parent 0e6523e commit 98745b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions AWB/AWBWebBrowser.cs
Expand Up @@ -83,7 +83,7 @@ public bool TextSelected()
private bool TextSelectedChecked()
{
IHTMLDocument2 htmlDocument = Document.DomDocument as IHTMLDocument2;

IHTMLSelectionObject currentSelection = htmlDocument.selection;

if (currentSelection != null)
Expand Down Expand Up @@ -125,7 +125,7 @@ public new void Navigate(string urlString)
{
// webbrowser Navigate calls fail under Mono so silently ignore for the moment
if (!Globals.UsingMono)
base.Navigate (urlString);
base.Navigate(urlString);
}
}
}
2 changes: 1 addition & 1 deletion WikiFunctions/Globals.cs
Expand Up @@ -74,7 +74,7 @@ public static Version WikiFunctionsVersion
private static readonly bool mSHTMLAvailable;

/// <summary>
/// Returns whether Microsoft.mshtml, Version=7.0.3300.0 is loaded
/// Returns whether Microsoft.mshtml, Version=7.0.3300.0 is loaded.
/// So whether IHTMLDocument2 object in AWBWebBrowser can be used
/// </summary>
public static bool MSHTMLAvailable
Expand Down

0 comments on commit 98745b7

Please sign in to comment.