summaryrefslogtreecommitdiff
path: root/src/wx/hints_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-08-19 13:55:46 +0100
committerCarl Hetherington <cth@carlh.net>2018-08-19 13:55:46 +0100
commit4408e6eea87ce9630e71e4a7d40e2dade091b0ee (patch)
tree634dd286de7ee2b18cbdc6bcb8837b52b2f8655f /src/wx/hints_dialog.h
parent67c604d3fa2391b98ea436e2c6412f1c83a98f77 (diff)
Similar pending/done for Film::Change.
Diffstat (limited to 'src/wx/hints_dialog.h')
-rw-r--r--src/wx/hints_dialog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/hints_dialog.h b/src/wx/hints_dialog.h
index 83510643a..2755c70fd 100644
--- a/src/wx/hints_dialog.h
+++ b/src/wx/hints_dialog.h
@@ -33,7 +33,7 @@ public:
HintsDialog (wxWindow* parent, boost::weak_ptr<Film>, bool ok);
private:
- void film_changed ();
+ void film_change (ChangeType);
void film_content_change (ChangeType type);
void shut_up (wxCommandEvent& ev);
void update ();
@@ -49,6 +49,6 @@ private:
boost::shared_ptr<Hints> _hints;
std::list<std::string> _current;
- boost::signals2::scoped_connection _film_changed_connection;
- boost::signals2::scoped_connection _film_content_changed_connection;
+ boost::signals2::scoped_connection _film_change_connection;
+ boost::signals2::scoped_connection _film_content_change_connection;
};