diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-02-08 18:39:09 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-02-08 18:39:09 +0000 |
| commit | c30f9b2c7fc20e05e73b0d5ebf9dae9a1d87eeb9 (patch) | |
| tree | fd93b08f723ac33d38d7517da7e8f7e51798ace8 /src/wx/screen_dialog.cc | |
| parent | 9d1fb717654dc38e9412d99bb84efdbced2e03ac (diff) | |
Fix a few warnings from Coverity; nothing dangerous, I don't think.
Diffstat (limited to 'src/wx/screen_dialog.cc')
| -rw-r--r-- | src/wx/screen_dialog.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wx/screen_dialog.cc b/src/wx/screen_dialog.cc index 503745683..8285ddb96 100644 --- a/src/wx/screen_dialog.cc +++ b/src/wx/screen_dialog.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -128,7 +128,9 @@ void ScreenDialog::setup_sensitivity () { wxButton* ok = dynamic_cast<wxButton*> (FindWindowById (wxID_OK, this)); - ok->Enable (_certificate); + if (ok) { + ok->Enable (_certificate); + } _download_certificate->Enable ( _manufacturer->GetStringSelection() == _("Doremi") || |
