/Mercurial.Net/Gui/AboutGuiCommand.cs

# · C# · 18 lines · 10 code · 0 blank · 8 comment · 0 complexity · 7e3407f0aa1881f2a1d360b713ffdc6d MD5 · raw file

  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. }