From fabf3228130bdfd2d3a9cea3b43962de1e807e9a Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Mon, 12 Jul 2010 14:15:58 +0000 Subject: [PATCH] Fixed a mistype in Poll --- Common/dataobjects/Poll.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/dataobjects/Poll.cs b/Common/dataobjects/Poll.cs index 7a21088..56f8219 100644 --- a/Common/dataobjects/Poll.cs +++ b/Common/dataobjects/Poll.cs @@ -44,7 +44,7 @@ namespace FLocal.Common.dataobjects { public static readonly TableSpec instance = new TableSpec(); public string name { get { return TABLE; }} public string idName { get { return FIELD_ID; }} - public void refreshSqlObject(int id) { } + public void refreshSqlObject(int id) { Refresh(id); } } protected override ISqlObjectTableSpec table { get { return TableSpec.instance; } }