diff options
| author | Christoph Mallon | 2012-03-13 10:06:00 +0100 |
|---|---|---|
| committer | Alyssa Milburn | 2012-03-13 15:43:23 +0100 |
| commit | d21cef411721984d4c6cabc7df04cbab9b725978 (patch) | |
| tree | 8110a0759a69e88bb3ce576ac5965bf0982f5ed7 /engines/parallaction | |
| parent | bc238a5ff38c5cb0ed563a3c56ade155b511bbde (diff) | |
| download | scummvm-rg350-d21cef411721984d4c6cabc7df04cbab9b725978.tar.gz scummvm-rg350-d21cef411721984d4c6cabc7df04cbab9b725978.tar.bz2 scummvm-rg350-d21cef411721984d4c6cabc7df04cbab9b725978.zip | |
JANITORIAL: Avoid the ugly operator invocation syntax.
Diffstat (limited to 'engines/parallaction')
| -rw-r--r-- | engines/parallaction/objects.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/parallaction/objects.h b/engines/parallaction/objects.h index 387e7af088..81761b2c6b 100644 --- a/engines/parallaction/objects.h +++ b/engines/parallaction/objects.h @@ -377,12 +377,12 @@ public: int16 getValue() const { assert(_accessor); - return _accessor->operator()(); + return (*_accessor)(); } void setValue(int16 value) { assert(_mutator); - _mutator->operator()(value); + (*_mutator)(value); } }; |
