/Mercurial.Net/Gui/AboutGuiCommand.cs
# · C# · 18 lines · 10 code · 0 blank · 8 comment · 0 complexity · 7e3407f0aa1881f2a1d360b713ffdc6d MD5 · raw file
- namespace Mercurial.Gui
- {
- /// <summary>
- /// Implements the TortoiseHg "about" command:
- /// Show the "About TortoiseHg" dialog.
- /// </summary>
- public sealed class AboutGuiCommand : GuiCommandBase<AboutGuiCommand>
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="AboutGuiCommand"/> class.
- /// </summary>
- public AboutGuiCommand()
- : base("about")
- {
- // Do nothing here
- }
- }
- }