diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-07-19 18:11:59 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-07-19 18:11:59 -0700 |
commit | da66b2d007b589b8ae167794fa7eef2d9379c4da (patch) | |
tree | 047a78b4845d53db5548d39917394662617bf324 | |
parent | 84417be6d6a6356738c339d96f4966d273328577 (diff) | |
download | DotNetOpenAuth-da66b2d007b589b8ae167794fa7eef2d9379c4da.zip DotNetOpenAuth-da66b2d007b589b8ae167794fa7eef2d9379c4da.tar.gz DotNetOpenAuth-da66b2d007b589b8ae167794fa7eef2d9379c4da.tar.bz2 |
OpenIdAjaxTextBox now implements ITextControl, which it should have anyway.
-rw-r--r-- | src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.cs index 6a4413f..2da537c 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdAjaxTextBox.cs @@ -38,7 +38,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// </summary> [DefaultProperty("Text"), ValidationProperty("Text")] [ToolboxData("<{0}:OpenIdAjaxTextBox runat=\"server\" />")] - public sealed class OpenIdAjaxTextBox : WebControl, ICallbackEventHandler { + public sealed class OpenIdAjaxTextBox : WebControl, ICallbackEventHandler, ITextControl { /// <summary> /// The name of the manifest stream containing the OpenIdAjaxTextBox.js file. /// </summary> |