Browse Source

Fix compil issues on msys2 , gcc13

newinvert
jean-pierre charras 2 years ago
parent
commit
f87065bf0b
  1. 3
      common/dialogs/git/dialog_git_repository.cpp
  2. 1
      kicad/project_tree.cpp
  3. 4
      kicad/project_tree_pane.cpp

3
common/dialogs/git/dialog_git_repository.cpp

@ -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 )

1
kicad/project_tree.cpp

@ -62,6 +62,7 @@ PROJECT_TREE::PROJECT_TREE( PROJECT_TREE_PANE* parent ) :
PROJECT_TREE::~PROJECT_TREE()
{
delete m_imageList;
delete m_statusImageList;
}

4
kicad/project_tree_pane.cpp

@ -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…
Cancel
Save