summaryrefslogtreecommitdiff
path: root/IvyFilter
diff options
context:
space:
mode:
authorfcolin2008-10-10 15:45:54 +0000
committerfcolin2008-10-10 15:45:54 +0000
commit3c9d0c18a19de1f1ec1c4e77f6b89fdf84d39605 (patch)
treeb4c691f61e44c2310887ccb77b94a519a73a7fdb /IvyFilter
parent8d10e8bbd1e19adc7c70e1101dbb69c213c910dd (diff)
downloadivy-csharp-3c9d0c18a19de1f1ec1c4e77f6b89fdf84d39605.zip
ivy-csharp-3c9d0c18a19de1f1ec1c4e77f6b89fdf84d39605.tar.gz
ivy-csharp-3c9d0c18a19de1f1ec1c4e77f6b89fdf84d39605.tar.bz2
ivy-csharp-3c9d0c18a19de1f1ec1c4e77f6b89fdf84d39605.tar.xz
Ajout de commentaire sur les menbres public
Diffstat (limited to 'IvyFilter')
-rw-r--r--IvyFilter/Filter.cs7
-rw-r--r--IvyFilter/IvyFilter.csproj7
2 files changed, 12 insertions, 2 deletions
diff --git a/IvyFilter/Filter.cs b/IvyFilter/Filter.cs
index 03e2435..31ed364 100644
--- a/IvyFilter/Filter.cs
+++ b/IvyFilter/Filter.cs
@@ -55,7 +55,12 @@ namespace IvyFilter
nbmsg = n;
bus = new Ivy("Filter", "Filter ready");
if (f)
- bus.SentMessageFilter.AddRange(filter);
+ {
+ foreach (string str in filter)
+ {
+ bus.SentMessageFilter.Add(str);
+ }
+ }
bus.BindingAdd += new EventHandler<IvyEventArgs>(bus_BindingAdd);
bus.BindingRemove += new EventHandler<IvyEventArgs>(bus_BindingRemove);
bus.BindingFilter += new EventHandler<IvyEventArgs>(bus_BindingFilter);
diff --git a/IvyFilter/IvyFilter.csproj b/IvyFilter/IvyFilter.csproj
index 5dbc3cb..55deff5 100644
--- a/IvyFilter/IvyFilter.csproj
+++ b/IvyFilter/IvyFilter.csproj
@@ -1,4 +1,4 @@
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -13,6 +13,11 @@
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
+ <FileUpgradeFlags>
+ </FileUpgradeFlags>
+ <UpgradeBackupLocation>
+ </UpgradeBackupLocation>
+ <OldToolsVersion>2.0</OldToolsVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>