PageRenderTime 44ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/Mercurial.Net/Gui/AboutGuiCommand.cs

#
C# | 18 lines | 10 code | 0 blank | 8 comment | 0 complexity | 7e3407f0aa1881f2a1d360b713ffdc6d MD5 | raw file
Possible License(s): BSD-3-Clause, GPL-2.0
  1. namespace Mercurial.Gui
  2. {
  3. /// <summary>
  4. /// Implements the TortoiseHg "about" command:
  5. /// Show the "About TortoiseHg" dialog.
  6. /// </summary>
  7. public sealed class AboutGuiCommand : GuiCommandBase<AboutGuiCommand>
  8. {
  9. /// <summary>
  10. /// Initializes a new instance of the <see cref="AboutGuiCommand"/> class.
  11. /// </summary>
  12. public AboutGuiCommand()
  13. : base("about")
  14. {
  15. // Do nothing here
  16. }
  17. }
  18. }