From: Eran I. <no...@so...> - 2014-01-10 21:13:36
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "codelite". The branch, master has been updated via 92c1969433f7d303c83bbe2dc74ea43b9f453e7b (commit) from e8e45f67329b8a726784d82366452fa852eeacf0 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- https://sourceforge.net/p/codelite/codelitegit/ci/92c1969433f7d303c83bbe2dc74ea43b9f453e7b commit 92c1969433f7d303c83bbe2dc74ea43b9f453e7b Author: Eran <era...@gm...> Date: Fri Jan 10 23:13:22 2014 +0200 Don't use newline separator in git messages diff --git a/TODO.TXT b/TODO.TXT index 02c61b0..6e8f147 100644 --- a/TODO.TXT +++ b/TODO.TXT @@ -1,2 +1,3 @@ - wxCrafter: make sure that after code generation an event is sent to git/svn views are updated accordingly - CMakePlugin / wxCrafter: use icon for the tabs? +- Add events for all debugger UI actions so plugins code implement it instead of the default debugger diff --git a/git/git.cpp b/git/git.cpp index 985ff59..117f968 100644 --- a/git/git.cpp +++ b/git/git.cpp @@ -1534,7 +1534,7 @@ void GitPlugin::OnProcessOutput(wxCommandEvent &event) number.Trim(false); unsigned long current; if(number.ToULong(¤t)) { - message.Prepend(m_progressMessage+wxT("\nStatus: ")); + message.Prepend(m_progressMessage+wxT(". Status: ")); m_console->UpdateProgress(current, message); } } ----------------------------------------------------------------------- Summary of changes: TODO.TXT | 1 + git/git.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-) hooks/post-receive -- codelite |