diff options
author | Stephen Kennedy | 2008-07-21 18:53:55 +0000 |
---|---|---|
committer | Stephen Kennedy | 2008-07-21 18:53:55 +0000 |
commit | a58080bd58bbcc9f7c710fade55620049bae14e4 (patch) | |
tree | 7991824b1f08ed4a22bed64d619e412eef355889 /common | |
parent | 871adba671593f87baf1dd8af225d4e1d1a74b71 (diff) | |
download | scummvm-rg350-a58080bd58bbcc9f7c710fade55620049bae14e4.tar.gz scummvm-rg350-a58080bd58bbcc9f7c710fade55620049bae14e4.tar.bz2 scummvm-rg350-a58080bd58bbcc9f7c710fade55620049bae14e4.zip |
Changed pushEvent to use a const& argument
svn-id: r33175
Diffstat (limited to 'common')
-rw-r--r-- | common/events.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/events.h b/common/events.h index 3e77824110..ba31610e92 100644 --- a/common/events.h +++ b/common/events.h @@ -145,7 +145,7 @@ public: /** * Pushes a "fake" event into the event queue */ - virtual void pushEvent(Common::Event event) = 0; + virtual void pushEvent(const Common::Event &event) = 0; /** Register random source so it can be serialized in game test purposes **/ virtual void registerRandomSource(Common::RandomSource &rnd, const char *name) = 0; |