summaryrefslogtreecommitdiff
path: root/src/wx/content_sub_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-09-07 00:35:38 +0100
committerCarl Hetherington <cth@carlh.net>2018-09-07 00:35:38 +0100
commit031564554ff22efa72bc36c0f058d77056aa8373 (patch)
treedd9fbe6b07b023eb2f22d4a8449dd4a298886a5e /src/wx/content_sub_panel.cc
parentb33d05d31b341f75a97e662cf74e6a013edb6402 (diff)
Simplify text panel.
Diffstat (limited to 'src/wx/content_sub_panel.cc')
-rw-r--r--src/wx/content_sub_panel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/content_sub_panel.cc b/src/wx/content_sub_panel.cc
index 0bd79805b..aee0d6595 100644
--- a/src/wx/content_sub_panel.cc
+++ b/src/wx/content_sub_panel.cc
@@ -43,7 +43,7 @@ ContentSubPanel::ContentSubPanel (ContentPanel* p, wxString name)
_grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
_sizer->Add (_grid, 0, wxALL, 8);
- Config::instance()->Changed.connect (boost::bind (&ContentSubPanel::config_changed, this, _1));
+ _config_connection = Config::instance()->Changed.connect (boost::bind (&ContentSubPanel::config_changed, this, _1));
}