mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
82b5e2eb8b
* remove old outdated SD project files * make it use some .NET 2.0 features as generic collections and settings svn path=/trunk/; revision=31130
29 lines
603 B
C#
29 lines
603 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace TechBot.Library
|
|
{
|
|
class WineBugUrl : BugCommand
|
|
{
|
|
public WineBugUrl(TechBotService techBot)
|
|
: base(techBot)
|
|
{
|
|
}
|
|
|
|
public override string[] AvailableCommands
|
|
{
|
|
get { return new string[] { "winebug" }; }
|
|
}
|
|
|
|
protected override string BugUrl
|
|
{
|
|
get { return "http://bugs.winehq.org/show_bug.cgi?id={0}"; }
|
|
}
|
|
|
|
public override string Help()
|
|
{
|
|
return "!winebug <number>";
|
|
}
|
|
}
|
|
}
|