Skip to content

Commit

Permalink
Reapplied a fix from f067332 that got lost in ed9ead2
Browse files Browse the repository at this point in the history
  • Loading branch information
Vultraz committed Feb 23, 2016
1 parent ed9ead2 commit 27d4091
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/quit_confirmation.hpp
Expand Up @@ -31,8 +31,8 @@ class CVideo;
class quit_confirmation
{
public:
quit_confirmation(const boost::function<bool()>& promt = &quit_confirmation::default_prompt)
: prompt_(promt) { blockers_.push_back(this); }
quit_confirmation(const boost::function<bool()>& prompt = &quit_confirmation::default_prompt)
: prompt_(prompt) { blockers_.push_back(this); }

~quit_confirmation() { blockers_.pop_back(); }

Expand Down

0 comments on commit 27d4091

Please sign in to comment.