WingMan – Diff between revs 7 and 10

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 7 Rev 10
Line 1... Line 1...
1 using System; 1 using System;
Line 2... Line 2...
2   2  
3 namespace WingMan.MouseKey 3 namespace WingMan.MouseKey
4 { 4 {
5 public class MouseKeyBindingsSynchronizedEventArgs : EventArgs 5 public class KeyBindingsSynchronizerEventArgs : EventArgs
6 { 6 {
7 public MouseKeyBindingsSynchronizedEventArgs(MouseKeyBindingExchange mouseKeyExchangeBindings) 7 public KeyBindingsSynchronizerEventArgs(KeyBindingExchange keyExchangeBindings)
8 { 8 {
9 Bindings = mouseKeyExchangeBindings; 9 Bindings = keyExchangeBindings;
Line 10... Line 10...
10 } 10 }
11   11  
12 public MouseKeyBindingExchange Bindings { get; set; } 12 public KeyBindingExchange Bindings { get; set; }