Changeset 579 for abuse/trunk/src/imlib/input.cpp
- Timestamp:
- May 5, 2011, 12:36:33 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/imlib/input.cpp
r555 r579 19 19 #include "input.h" 20 20 21 void button::remap( filter *f)21 void button::remap(Filter *f) 22 22 { 23 23 if (visual) 24 24 { 25 f-> apply(visual);25 f->Apply(visual); 26 26 if (pressed) 27 f-> apply(pressed);27 f->Apply(pressed); 28 28 } 29 29 } … … 33 33 } 34 34 35 void button_box::remap( filter *f)35 void button_box::remap(Filter *f) 36 36 { 37 37 for (button *b=buttons; b; b=(button *)b->next)
Note: See TracChangeset
for help on using the changeset viewer.