Fix GL information fetching.
[dcpomatic.git] / src / wx / credentials_download_certificate_panel.cc
index fb49082694bea7651492df309c2f83738426819c..77c18e3c1ddd0459cfeeb5546f81d8c7a32db340 100644 (file)
@@ -24,7 +24,7 @@
 #include "wx_util.h"
 
 using std::string;
-using boost::function;
+using std::function;
 using boost::optional;
 
 CredentialsDownloadCertificatePanel::CredentialsDownloadCertificatePanel (
@@ -44,11 +44,11 @@ CredentialsDownloadCertificatePanel::CredentialsDownloadCertificatePanel (
        , _set_password (set_password)
        , _unset_password (unset_password)
 {
-       add_label_to_sizer (_table, this, _("User name"), true);
+       add_label_to_sizer (_table, this, _("User name"), true, 0, wxALIGN_CENTER_VERTICAL);
        _username = new wxTextCtrl (this, wxID_ANY, std_to_wx(_get_username().get_value_or("")), wxDefaultPosition, wxSize(300, -1));
        _table->Add (_username, 1, wxEXPAND);
 
-       add_label_to_sizer (_table, this, _("Password"), true);
+       add_label_to_sizer (_table, this, _("Password"), true, 0, wxALIGN_CENTER_VERTICAL);
        _password = new PasswordEntry (this);
        _password->set (_get_password().get_value_or(""));
        _table->Add (_password->get_panel(), 1, wxEXPAND);