Fix compil issues on msys2 , gcc13
This commit is contained in:
parent
aa2a0cdd16
commit
f87065bf0b
|
@ -307,7 +307,8 @@ void DIALOG_GIT_REPOSITORY::OnTestClick( wxCommandEvent& event )
|
|||
|
||||
callbacks.payload = this;
|
||||
|
||||
git_remote_create_with_fetchspec( &remote, m_repository, "origin", m_txtURL->GetValue(),
|
||||
wxString txtURL = m_txtURL->GetValue();
|
||||
git_remote_create_with_fetchspec( &remote, m_repository, "origin", txtURL.ToStdString().c_str(),
|
||||
"+refs/heads/*:refs/remotes/origin/*" );
|
||||
|
||||
if( git_remote_connect( remote, GIT_DIRECTION_FETCH, &callbacks, nullptr, nullptr ) != GIT_OK )
|
||||
|
|
|
@ -62,6 +62,7 @@ PROJECT_TREE::PROJECT_TREE( PROJECT_TREE_PANE* parent ) :
|
|||
PROJECT_TREE::~PROJECT_TREE()
|
||||
{
|
||||
delete m_imageList;
|
||||
delete m_statusImageList;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -2004,8 +2004,8 @@ void PROJECT_TREE_PANE::onGitCommit( wxCommandEvent& aEvent )
|
|||
git_repository_config( &config, repo );
|
||||
|
||||
// Read relevant data from the git config
|
||||
const char* authorName = nullptr;
|
||||
const char* authorEmail = nullptr;
|
||||
wxString authorName;
|
||||
wxString authorEmail;
|
||||
|
||||
// Read author name
|
||||
git_config_entry* name_c = nullptr;
|
||||
|
|
Loading…
Reference in New Issue