~zeitgeist-sharp/zeitgeist-sharp/branch-0_1

« back to all changes in this revision

Viewing changes to Zeitgeist/ZsUtils.cs

  • Committer: Manish Sinha
  • Date: 2010-10-01 20:37:57 UTC
  • mfrom: (31.1.2 trunk)
  • Revision ID: mail@manishsinha.net-20101001203757-x9e21df1n02at4eu
Merge from trunk to the branch with DateTime fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
namespace Zeitgeist
8
8
{
9
 
        public  class ZsUtils
 
9
        internal class ZsUtils
10
10
        {
11
11
                #region Event <--> RawEvent Conversions
12
12
                
47
47
                        
48
48
                        foreach(RawEvent rawEvent in rawEvents)
49
49
                        {
50
 
                                Event evnt = Event.FromRaw(rawEvent);
 
50
                                Event evnt = RawEvent.FromRaw(rawEvent);
51
51
                                events.Add(evnt);
52
52
                        }
53
53