X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Ffont_files_dialog.cc;h=e85c37fa73b49e418f4b629cf25705a465098c63;hp=7fd4f9d99aeda678bd4b75a010ab2040a90f7741;hb=8b2a3f31b6b4238d8534549f495e7276174ddfba;hpb=9c1bb2e5ca7c80c4e26b1b2e41159aa171360a94 diff --git a/src/wx/font_files_dialog.cc b/src/wx/font_files_dialog.cc index 7fd4f9d99..e85c37fa7 100644 --- a/src/wx/font_files_dialog.cc +++ b/src/wx/font_files_dialog.cc @@ -21,6 +21,7 @@ #include "font_files_dialog.h" #include "system_font_dialog.h" #include "static_text.h" +#include "dcpomatic_button.h" using boost::bind; @@ -49,10 +50,10 @@ FontFilesDialog::FontFilesDialog (wxWindow* parent, FontFiles files) wxSize (200, -1) ); _table->Add (_name[i], 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6); - add (_set_file[i] = new wxButton (this, wxID_ANY, _("Set from file..."))); + add (_set_file[i] = new Button (this, _("Set from file..."))); _set_file[i]->Bind (wxEVT_BUTTON, bind (&FontFilesDialog::set_from_file_clicked, this, static_cast(i))); #ifdef DCPOMATIC_WINDOWS - add (_set_system[i] = new wxButton (this, wxID_ANY, _("Set from system font..."))); + add (_set_system[i] = new Button (this, _("Set from system font..."))); _set_system[i]->Bind (wxEVT_BUTTON, bind (&FontFilesDialog::set_from_system_clicked, this, static_cast(i))); #endif }