|
From: Eran I. <no...@so...> - 2014-01-11 19:33:21
|
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 1ed1e29e093c751db9d19684ae04ddadc47dc6bf (commit)
from 9b1a320b90a7500d2aa319634ec94631dcd35213 (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/1ed1e29e093c751db9d19684ae04ddadc47dc6bf
commit 1ed1e29e093c751db9d19684ae04ddadc47dc6bf
Author: eran <er...@os...>
Date: Sat Jan 11 13:32:55 2014 -0800
Added wxBORDER_THEME style to various git dialogs
diff --git a/git/gitCommitEditor.cpp b/git/gitCommitEditor.cpp
index ff7780a..3e2fa2c 100644
--- a/git/gitCommitEditor.cpp
+++ b/git/gitCommitEditor.cpp
@@ -5,7 +5,7 @@
#include "editor_config.h"
GitCommitEditor::GitCommitEditor(wxWindow* parent, wxWindowID id, const wxPoint &position, const wxSize& size, long style)
- : wxStyledTextCtrl(parent, id, position, size, style)
+ : wxStyledTextCtrl(parent, id, position, size, style|wxBORDER_THEME)
{
InitStyles();
}
diff --git a/git/gitui.cpp b/git/gitui.cpp
index 30ae0ca..20e472f 100644
--- a/git/gitui.cpp
+++ b/git/gitui.cpp
@@ -562,7 +562,7 @@ GitDiffDlgBase::GitDiffDlgBase(wxWindow* parent, wxWindowID id, const wxString&
m_sdbSizer1->AddButton(m_button145);
m_sdbSizer1->Realize();
- SetSizeHints(879,600);
+ SetSizeHints(-1,-1);
if ( GetSizer() ) {
GetSizer()->Fit(this);
}
diff --git a/git/gitui.h b/git/gitui.h
index 0554a17..b0ff3f8 100644
--- a/git/gitui.h
+++ b/git/gitui.h
@@ -154,7 +154,7 @@ protected:
virtual void OnChangeFile(wxCommandEvent& event) { event.Skip(); }
public:
- GitDiffDlgBase(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Current Diffs"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(879,600), long style = wxCAPTION|wxRESIZE_BORDER|wxMAXIMIZE_BOX|wxMINIMIZE_BOX|wxCLOSE_BOX);
+ GitDiffDlgBase(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Current Diffs"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(-1,-1), long style = wxCAPTION|wxRESIZE_BORDER|wxMAXIMIZE_BOX|wxMINIMIZE_BOX|wxCLOSE_BOX);
virtual ~GitDiffDlgBase();
};
diff --git a/git/gitui.wxcp b/git/gitui.wxcp
index bc24a49..28b8321 100644
--- a/git/gitui.wxcp
+++ b/git/gitui.wxcp
@@ -5127,7 +5127,7 @@
"m_properties": [{
"type": "string",
"m_label": "Size:",
- "m_value": "879,600"
+ "m_value": "-1,-1"
}, {
"type": "string",
"m_label": "Minimum Size:",
-----------------------------------------------------------------------
Summary of changes:
git/gitCommitEditor.cpp | 2 +-
git/gitui.cpp | 2 +-
git/gitui.h | 2 +-
git/gitui.wxcp | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
codelite
|