|
From: Eran I. <no...@so...> - 2014-01-11 19:25:07
|
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 9b1a320b90a7500d2aa319634ec94631dcd35213 (commit)
from d92dd1dd8a1f2edb4da8ca3feb609a7818716475 (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/9b1a320b90a7500d2aa319634ec94631dcd35213
commit 9b1a320b90a7500d2aa319634ec94631dcd35213
Author: eran <er...@os...>
Date: Sat Jan 11 13:23:47 2014 -0800
Adjusted various git dialogs to look better on OSX
diff --git a/LiteEditor.workspace b/LiteEditor.workspace
index 08385ee..86f724d 100644
--- a/LiteEditor.workspace
+++ b/LiteEditor.workspace
@@ -44,7 +44,7 @@
<Project Name="Tweaks" Path="Tweaks/Tweaks.project" Active="No"/>
<Project Name="CMakePlugin" Path="CMakePlugin/CMakePlugin.project" Active="No"/>
<BuildMatrix>
- <WorkspaceConfiguration Name="Win Release Unicode" Selected="yes">
+ <WorkspaceConfiguration Name="Win Release Unicode" Selected="no">
<Project Name="abbreviation" ConfigName="WinReleaseUnicode"/>
<Project Name="CallGraph" ConfigName="WinReleaseUnicode"/>
<Project Name="CMakePlugin" ConfigName="WinReleaseUnicode"/>
@@ -219,7 +219,7 @@
<Project Name="Tweaks" ConfigName="DebugUnicode"/>
<Project Name="CMakePlugin" ConfigName="WinDebugUnicode"/>
</WorkspaceConfiguration>
- <WorkspaceConfiguration Name="OSX_Release" Selected="no">
+ <WorkspaceConfiguration Name="OSX_Release" Selected="yes">
<Project Name="ZoomNavigator" ConfigName="DebugUnicode"/>
<Project Name="wxsqlite3" ConfigName="WinReleaseUnicode"/>
<Project Name="wxshapeframework" ConfigName="WinReleaseUnicode"/>
diff --git a/git/gitui.cpp b/git/gitui.cpp
index 90b0d96..30ae0ca 100644
--- a/git/gitui.cpp
+++ b/git/gitui.cpp
@@ -689,7 +689,7 @@ GitFileDiffDlgBase::GitFileDiffDlgBase(wxWindow* parent, wxWindowID id, const wx
wxBoxSizer* boxSizer124 = new wxBoxSizer(wxVERTICAL);
this->SetSizer(boxSizer124);
- m_auibar132 = new wxAuiToolBar(this, wxID_ANY, wxDefaultPosition, wxSize(-1,-1), wxAUI_TB_DEFAULT_STYLE);
+ m_auibar132 = new wxAuiToolBar(this, wxID_ANY, wxDefaultPosition, wxSize(-1,-1), wxAUI_TB_PLAIN_BACKGROUND|wxAUI_TB_DEFAULT_STYLE);
m_auibar132->SetToolBitmapSize(wxSize(16,16));
boxSizer124->Add(m_auibar132, 0, wxLEFT|wxRIGHT|wxTOP|wxEXPAND, 5);
@@ -697,7 +697,7 @@ GitFileDiffDlgBase::GitFileDiffDlgBase(wxWindow* parent, wxWindowID id, const wx
m_auibar132->AddTool(wxID_SAVEAS, _("Save as patch"), wxXmlResource::Get()->LoadBitmap(wxT("save")), wxNullBitmap, wxITEM_NORMAL, _("Save as patch"), _("Save as patch"), NULL);
m_auibar132->Realize();
- m_editor = new GitCommitEditor(this, wxID_ANY, wxDefaultPosition, wxSize(-1,-1), 0);
+ m_editor = new GitCommitEditor(this, wxID_ANY, wxDefaultPosition, wxSize(500,300), wxBORDER_THEME);
// Configure the fold margin
m_editor->SetMarginType (4, wxSTC_MARGIN_SYMBOL);
m_editor->SetMarginMask (4, wxSTC_MASK_FOLDERS);
@@ -735,16 +735,16 @@ GitFileDiffDlgBase::GitFileDiffDlgBase(wxWindow* parent, wxWindowID id, const wx
boxSizer124->Add(m_editor, 1, wxLEFT|wxRIGHT|wxBOTTOM|wxEXPAND, 5);
- wxBoxSizer* boxSizer126 = new wxBoxSizer(wxHORIZONTAL);
+ m_stdBtnSizer294 = new wxStdDialogButtonSizer();
- boxSizer124->Add(boxSizer126, 0, wxALL|wxALIGN_CENTER_HORIZONTAL, 5);
+ boxSizer124->Add(m_stdBtnSizer294, 0, wxALL|wxALIGN_CENTER_HORIZONTAL, 5);
- m_button128 = new wxButton(this, wxID_OK, _("&OK"), wxDefaultPosition, wxSize(-1,-1), 0);
- m_button128->SetDefault();
+ m_button296 = new wxButton(this, wxID_OK, wxT(""), wxDefaultPosition, wxSize(-1, -1), 0);
+ m_button296->SetDefault();
+ m_stdBtnSizer294->AddButton(m_button296);
+ m_stdBtnSizer294->Realize();
- boxSizer126->Add(m_button128, 0, wxALL, 5);
-
- SetSizeHints(500,300);
+ SetSizeHints(-1,-1);
if ( GetSizer() ) {
GetSizer()->Fit(this);
}
diff --git a/git/gitui.h b/git/gitui.h
index 426346c..0554a17 100644
--- a/git/gitui.h
+++ b/git/gitui.h
@@ -189,13 +189,14 @@ class GitFileDiffDlgBase : public wxDialog
protected:
wxAuiToolBar* m_auibar132;
GitCommitEditor* m_editor;
- wxButton* m_button128;
+ wxStdDialogButtonSizer* m_stdBtnSizer294;
+ wxButton* m_button296;
protected:
virtual void OnSaveAsPatch(wxCommandEvent& event) { event.Skip(); }
public:
- GitFileDiffDlgBase(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("File diff"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(500,300), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER);
+ GitFileDiffDlgBase(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("File diff"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(-1,-1), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER);
virtual ~GitFileDiffDlgBase();
};
diff --git a/git/gitui.wxcp b/git/gitui.wxcp
index 71fb708..bc24a49 100644
--- a/git/gitui.wxcp
+++ b/git/gitui.wxcp
@@ -1,7 +1,7 @@
{
"metadata": {
"m_generatedFilesDir": ".",
- "m_objCounter": 292,
+ "m_objCounter": 296,
"m_includeFiles": [],
"m_bitmapFunction": "wxCrafterpca4kKInitBitmapResources",
"m_bitmapsFile": "gitui_git_bitmaps.cpp",
@@ -7032,7 +7032,7 @@
"m_properties": [{
"type": "string",
"m_label": "Size:",
- "m_value": "500,300"
+ "m_value": "-1,-1"
}, {
"type": "string",
"m_label": "Minimum Size:",
@@ -7157,7 +7157,7 @@
"border": 5,
"gbSpan": "1,1",
"gbPosition": "0,0",
- "m_styles": ["wxAUI_TB_DEFAULT_STYLE"],
+ "m_styles": ["wxAUI_TB_PLAIN_BACKGROUND", "wxAUI_TB_DEFAULT_STYLE"],
"m_sizerFlags": ["wxLEFT", "wxRIGHT", "wxTOP", "wxEXPAND"],
"m_properties": [{
"type": "winid",
@@ -7242,7 +7242,7 @@
"border": 5,
"gbSpan": "1,1",
"gbPosition": "0,0",
- "m_styles": [],
+ "m_styles": ["wxBORDER_THEME"],
"m_sizerFlags": ["wxLEFT", "wxRIGHT", "wxBOTTOM", "wxEXPAND"],
"m_properties": [{
"type": "winid",
@@ -7251,7 +7251,7 @@
}, {
"type": "string",
"m_label": "Size:",
- "m_value": "-1,-1"
+ "m_value": "500,300"
}, {
"type": "string",
"m_label": "Minimum Size:",
@@ -7356,7 +7356,7 @@
"m_events": [],
"m_children": []
}, {
- "m_type": 4401,
+ "m_type": 4467,
"proportion": 0,
"border": 5,
"gbSpan": "1,1",
@@ -7364,22 +7364,65 @@
"m_styles": [],
"m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_HORIZONTAL"],
"m_properties": [{
+ "type": "winid",
+ "m_label": "ID:",
+ "m_winid": "wxID_ANY"
+ }, {
+ "type": "string",
+ "m_label": "Size:",
+ "m_value": "-1,-1"
+ }, {
+ "type": "string",
+ "m_label": "Minimum Size:",
+ "m_value": "-1,-1"
+ }, {
"type": "string",
"m_label": "Name:",
- "m_value": "boxSizer126"
+ "m_value": "m_stdBtnSizer294"
+ }, {
+ "type": "multi-string",
+ "m_label": "Tooltip:",
+ "m_value": ""
+ }, {
+ "type": "colour",
+ "m_label": "Bg Colour:",
+ "colour": "<Default>"
+ }, {
+ "type": "colour",
+ "m_label": "Fg Colour:",
+ "colour": "<Default>"
+ }, {
+ "type": "font",
+ "m_label": "Font:",
+ "m_value": ""
+ }, {
+ "type": "bool",
+ "m_label": "Hidden",
+ "m_value": false
+ }, {
+ "type": "bool",
+ "m_label": "Disabled",
+ "m_value": false
+ }, {
+ "type": "bool",
+ "m_label": "Focused",
+ "m_value": false
}, {
"type": "string",
- "m_label": "Style:",
+ "m_label": "Class Name:",
"m_value": ""
}, {
- "type": "choice",
- "m_label": "Orientation:",
- "m_selection": 1,
- "m_options": ["wxVERTICAL", "wxHORIZONTAL"]
+ "type": "string",
+ "m_label": "Include File:",
+ "m_value": ""
+ }, {
+ "type": "string",
+ "m_label": "Style:",
+ "m_value": ""
}],
"m_events": [],
"m_children": [{
- "m_type": 4400,
+ "m_type": 4468,
"proportion": 0,
"border": 5,
"gbSpan": "1,1",
@@ -7387,77 +7430,22 @@
"m_styles": [],
"m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
"m_properties": [{
- "type": "winid",
+ "type": "choice",
"m_label": "ID:",
- "m_winid": "wxID_OK"
- }, {
- "type": "string",
- "m_label": "Size:",
- "m_value": "-1,-1"
- }, {
- "type": "string",
- "m_label": "Minimum Size:",
- "m_value": "-1,-1"
+ "m_selection": 0,
+ "m_options": ["wxID_OK", "wxID_YES", "wxID_SAVE", "wxID_APPLY", "wxID_CLOSE", "wxID_NO", "wxID_CANCEL", "wxID_HELP", "wxID_CONTEXT_HELP"]
}, {
"type": "string",
"m_label": "Name:",
- "m_value": "m_button128"
+ "m_value": "m_button296"
}, {
"type": "multi-string",
"m_label": "Tooltip:",
"m_value": ""
}, {
- "type": "colour",
- "m_label": "Bg Colour:",
- "colour": "<Default>"
- }, {
- "type": "colour",
- "m_label": "Fg Colour:",
- "colour": "<Default>"
- }, {
- "type": "font",
- "m_label": "Font:",
- "m_value": ""
- }, {
- "type": "bool",
- "m_label": "Hidden",
- "m_value": false
- }, {
- "type": "bool",
- "m_label": "Disabled",
- "m_value": false
- }, {
- "type": "bool",
- "m_label": "Focused",
- "m_value": false
- }, {
- "type": "string",
- "m_label": "Class Name:",
- "m_value": ""
- }, {
- "type": "string",
- "m_label": "Include File:",
- "m_value": ""
- }, {
- "type": "string",
- "m_label": "Style:",
- "m_value": ""
- }, {
- "type": "string",
- "m_label": "Label:",
- "m_value": "&OK"
- }, {
"type": "bool",
"m_label": "Default Button",
"m_value": true
- }, {
- "type": "bitmapPicker",
- "m_label": "Bitmap File:",
- "m_path": ""
- }, {
- "type": "string",
- "m_label": "Margins:",
- "m_value": "2,2"
}],
"m_events": [],
"m_children": []
diff --git a/git/gitui_git_bitmaps.cpp b/git/gitui_git_bitmaps.cpp
index 6d2ade5..9b833fb 100644
--- a/git/gitui_git_bitmaps.cpp
+++ b/git/gitui_git_bitmaps.cpp
@@ -1,1155 +1,1155 @@
-//
-// This file was automatically generated by wxrc, do not edit by hand.
-//
-
-#include <wx/wxprec.h>
-
-#ifdef __BORLANDC__
- #pragma hdrstop
-#endif
-
-#include <wx/filesys.h>
-#include <wx/fs_mem.h>
-#include <wx/xrc/xmlres.h>
-#include <wx/xrc/xh_all.h>
-
-#if wxCHECK_VERSION(2,8,5) && wxABI_VERSION >= 20805
- #define XRC_ADD_FILE(name, data, size, mime) \
- wxMemoryFSHandler::AddFileWithMimeType(name, data, size, mime)
-#else
- #define XRC_ADD_FILE(name, data, size, mime) \
- wxMemoryFSHandler::AddFile(name, data, size)
-#endif
-
-static size_t xml_res_size_0 = 790;
-static unsigned char xml_res_file_0[] = {
-137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
-0,31,243,255,97,0,0,0,1,115,82,71,66,0,174,206,28,233,0,0,0,6,98,75,71,
-68,0,255,0,255,0,255,160,189,167,147,0,0,0,9,112,72,89,115,0,0,11,19,0,
-0,11,19,1,0,154,156,24,0,0,0,7,116,73,77,69,7,218,8,10,18,37,24,196,129,
-1,227,0,0,2,150,73,68,65,84,56,203,141,146,93,72,83,97,24,199,255,231,107,
-231,108,59,115,115,206,143,233,176,112,133,246,65,9,133,38,161,66,13,34,
-140,138,69,66,36,133,65,81,87,129,129,97,104,68,117,23,20,221,4,66,100,
-80,129,41,93,164,204,46,186,240,66,104,97,150,83,103,142,196,185,220,114,
-211,169,185,51,214,118,60,158,115,186,153,195,210,200,23,158,171,231,249,
-253,120,62,94,2,91,120,15,157,6,154,214,137,109,26,173,161,69,67,81,239,
-67,179,243,167,111,247,64,2,0,114,43,2,137,140,191,176,239,171,105,209,
-153,172,201,194,237,59,14,128,128,101,45,71,255,15,126,224,68,73,249,161,
-218,227,44,67,208,164,217,164,29,254,50,52,26,249,206,70,0,17,91,234,128,
-209,235,29,217,6,222,152,205,37,137,217,240,44,147,144,217,27,79,60,162,
-186,150,255,167,160,231,57,111,26,30,3,207,176,218,102,41,22,64,40,28,69,
-48,34,60,186,255,38,54,216,118,54,51,193,70,129,195,225,0,0,228,154,37,
-167,62,121,114,186,184,74,103,95,162,130,248,232,139,127,245,77,25,111,
-221,57,79,225,94,247,66,166,158,88,15,119,117,1,245,245,192,197,115,229,
-59,35,75,214,111,85,7,45,170,163,218,64,228,152,99,24,255,236,138,11,66,
-170,242,210,205,212,196,122,38,35,80,85,160,183,61,23,10,27,53,179,156,
-109,64,144,206,236,238,125,231,199,252,162,2,155,85,3,158,91,240,92,57,
-54,80,185,215,137,149,245,130,204,21,8,2,112,117,68,89,62,171,100,240,240,
-145,102,59,67,9,106,125,93,140,248,240,105,1,207,58,227,88,92,86,124,127,
-195,25,129,171,67,143,121,33,65,129,201,113,85,214,52,217,85,89,130,152,
-26,39,68,201,134,178,146,73,220,190,206,161,239,173,91,121,181,201,178,
-73,0,168,107,76,160,48,175,160,181,162,186,233,232,242,82,88,149,146,99,
-144,213,124,200,82,24,226,175,57,240,198,82,164,146,170,117,179,107,209,
-174,151,89,164,152,20,186,119,237,111,116,122,6,95,163,162,226,20,193,234,
-172,240,251,60,200,54,205,64,81,139,64,105,76,144,87,84,106,51,1,89,215,
-32,40,44,171,143,142,12,61,69,105,89,45,40,42,129,241,17,55,56,142,86,21,
-153,68,74,178,64,88,142,99,85,129,55,221,49,185,113,132,11,137,171,129,
-233,216,181,9,79,159,20,250,17,70,208,31,80,115,242,183,17,171,40,86,39,
-188,126,204,76,121,17,8,161,31,128,9,0,15,128,91,99,41,0,32,9,208,125,253,
-178,207,227,253,217,105,209,249,246,232,245,102,134,210,152,180,238,126,
-55,197,27,108,8,206,76,38,91,31,11,151,211,75,95,77,135,252,199,63,224,
-52,64,106,5,36,0,181,225,4,242,139,242,80,64,83,140,78,195,144,70,89,198,
-220,221,118,113,20,128,2,64,77,7,0,224,55,23,191,1,23,225,97,245,223,0,
-0,0,0,73,69,78,68,174,66,96,130};
-
-static size_t xml_res_size_1 = 318;
-static unsigned char xml_res_file_1[] = {
-137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
-0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
-65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
-0,0,0,224,73,68,65,84,120,218,98,252,255,255,63,3,37,128,17,221,0,199,3,
-190,200,220,221,80,218,21,38,176,223,97,51,138,122,22,44,134,10,2,177,49,
-18,27,4,92,160,244,89,32,126,79,200,0,99,36,155,177,185,100,15,33,3,206,
-34,57,185,3,74,87,32,201,17,244,194,123,36,91,96,206,221,67,116,32,30,112,
-143,84,2,82,161,56,212,175,118,216,185,252,30,33,23,40,33,57,29,155,247,
-112,27,144,158,158,206,192,160,192,7,114,174,50,84,161,49,82,76,128,13,
-112,64,51,145,9,139,45,105,64,124,23,41,16,119,67,241,76,168,235,240,6,
-162,32,84,211,44,36,177,78,104,96,150,163,59,31,155,11,96,78,174,64,243,
-115,39,148,78,35,38,26,145,65,5,161,188,128,238,130,61,80,155,118,35,249,
-87,16,234,124,99,108,233,1,155,11,194,160,6,220,197,226,26,162,82,226,89,
-104,52,134,34,69,225,106,108,1,8,2,0,1,6,0,131,130,58,203,4,57,91,201,0,
-0,0,0,73,69,78,68,174,66,96,130};
-
-static size_t xml_res_size_2 = 698;
-static unsigned char xml_res_file_2[] = {
-137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
-0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
-65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
-0,0,2,92,73,68,65,84,120,218,164,83,75,104,83,81,16,61,247,54,109,146,135,
-73,26,75,105,75,180,96,193,141,93,182,21,17,252,97,17,145,66,87,117,39,
-8,138,130,69,68,236,34,11,23,46,92,132,90,23,90,21,23,10,74,118,118,165,
-20,220,148,46,196,133,134,180,144,74,197,66,180,32,141,9,249,52,77,210,
-230,251,62,157,121,249,21,83,112,225,133,121,220,119,231,206,57,51,115,
-230,10,195,48,240,63,203,194,31,33,68,227,224,210,12,134,84,13,62,93,199,
-40,67,179,71,74,160,77,98,129,204,59,127,15,75,245,187,76,46,204,79,13,
-224,226,52,158,187,15,56,111,93,57,115,3,199,250,7,81,86,115,216,202,71,
-145,200,108,32,180,30,66,48,188,138,114,69,155,155,159,194,229,22,0,10,
-126,231,57,216,55,241,236,154,31,43,145,183,88,94,247,163,164,114,118,128,
-149,242,84,58,6,176,83,116,97,49,180,130,66,89,123,65,153,76,54,0,198,30,
-139,33,135,77,9,62,185,238,199,226,143,73,164,182,99,80,117,224,206,169,
-106,127,158,126,22,176,17,136,20,237,72,166,187,240,117,45,6,77,199,240,
-135,187,198,146,228,11,21,21,143,198,70,198,241,237,207,43,164,10,49,42,
-24,208,155,109,129,198,70,255,70,91,5,118,101,19,189,110,242,107,152,97,
-159,172,221,57,119,164,231,48,194,201,143,38,115,153,34,74,122,19,128,247,
-69,42,135,75,178,43,101,56,21,179,187,103,27,42,112,162,37,109,139,234,
-236,196,205,145,116,139,84,222,211,77,169,95,46,11,83,149,186,250,178,42,
-35,144,217,73,64,88,228,191,133,151,251,204,129,36,128,84,54,10,213,177,
-137,89,98,224,50,56,93,239,137,42,141,239,139,48,149,104,167,222,88,9,128,
-102,4,245,209,49,241,180,18,2,225,232,47,24,69,55,108,86,170,147,204,218,
-209,100,225,61,159,177,47,155,1,114,121,34,41,34,208,0,72,126,135,111,45,
-18,71,50,161,195,208,37,44,204,102,105,2,240,158,207,52,202,42,30,23,136,
-166,13,196,41,198,44,191,54,72,202,249,251,120,227,234,198,196,81,143,68,
-119,143,14,71,23,224,178,245,154,0,153,98,12,185,20,5,199,4,126,70,13,100,
-226,152,91,120,136,171,20,155,223,59,202,253,23,30,224,181,210,137,209,
-62,183,128,195,110,52,234,228,142,231,10,85,230,237,164,25,60,69,199,191,
-91,222,2,173,129,193,113,156,60,52,140,219,22,59,142,215,165,98,183,90,
-64,96,35,136,217,213,247,248,196,193,251,62,166,218,226,49,241,144,57,255,
-18,48,75,22,33,203,239,125,141,187,2,12,0,220,76,7,75,146,212,175,177,0,
-0,0,0,73,69,78,68,174,66,96,130};
-
-static size_t xml_res_size_3 = 673;
-static unsigned char xml_res_file_3[] = {
-137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
-0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
-65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
-0,0,2,67,73,68,65,84,120,218,148,147,79,72,84,81,20,198,127,247,205,200,
-52,106,163,97,80,72,80,68,96,69,17,49,86,214,162,41,208,44,138,198,69,100,
-80,16,33,22,180,41,137,18,102,83,180,72,237,15,185,170,133,171,192,77,65,
-97,18,65,3,146,8,45,130,105,64,44,26,33,203,178,22,141,36,54,58,218,56,
-243,222,237,220,55,180,48,39,165,3,151,203,61,220,239,59,223,249,238,185,
-234,232,93,200,217,244,84,20,19,182,109,208,44,12,165,224,251,20,88,22,
-120,21,15,159,95,214,39,194,157,10,73,227,53,8,219,33,124,233,200,89,230,
-178,57,156,66,4,102,121,52,142,163,120,253,33,209,120,160,67,53,70,91,181,
-106,16,18,175,185,32,196,140,218,79,200,138,132,66,10,180,73,206,106,44,
-181,156,237,85,59,168,92,181,135,250,14,165,125,69,34,46,44,45,204,166,
-232,247,248,9,217,133,202,75,56,66,176,102,53,108,219,8,129,0,148,251,215,
-241,241,83,25,47,227,131,247,92,5,209,171,52,201,86,206,34,81,125,134,253,
-227,19,220,170,219,43,138,189,163,148,174,20,98,155,38,151,64,84,140,176,
-68,60,109,97,100,247,121,86,12,86,16,9,213,64,169,223,53,220,103,205,235,
-53,111,135,167,16,129,20,153,76,125,163,59,61,35,134,230,36,145,203,187,
-107,253,49,201,244,47,143,96,203,222,167,255,229,67,13,161,18,159,28,50,
-130,205,228,243,150,1,231,4,60,59,135,238,60,217,77,38,43,102,202,60,56,
-78,30,100,118,33,93,38,228,231,202,74,2,247,15,109,221,135,22,240,76,202,
-21,48,167,180,48,212,182,43,125,231,84,23,241,177,102,126,138,180,222,1,
-233,195,51,191,250,206,13,155,168,221,178,139,100,234,177,60,247,20,239,
-198,32,246,150,71,234,224,77,244,181,227,55,24,26,143,184,213,54,87,158,
-198,99,217,238,244,169,188,47,152,34,70,105,114,58,206,228,175,247,76,167,
-225,217,43,120,113,133,181,238,43,164,179,19,168,34,1,8,193,112,234,129,
-91,221,16,252,61,141,89,33,73,124,134,161,132,128,91,169,22,99,191,152,
-124,176,182,141,216,133,134,102,126,88,93,124,77,66,255,64,126,238,23,144,
-200,57,155,38,218,119,157,136,128,223,184,73,243,153,12,73,93,27,186,103,
-248,152,174,111,119,85,7,23,89,235,77,75,102,130,205,114,71,217,32,122,
-91,8,30,190,77,204,206,16,247,21,187,23,231,69,207,69,141,249,60,75,133,
-1,86,241,31,241,91,128,1,0,121,204,231,72,83,203,130,185,0,0,0,0,73,69,
-78,68,174,66,96,130};
-
-static size_t xml_res_size_4 = 605;
-static unsigned char xml_res_file_4[] = {
-137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
-0,31,243,255,97,0,0,2,36,73,68,65,84,120,94,149,146,77,107,19,65,28,198,
-127,179,179,205,38,105,83,171,180,41,245,37,42,244,229,44,189,20,42,168,
-31,64,61,52,185,168,71,253,120,162,224,65,15,189,9,210,90,15,161,133,54,
-104,180,180,144,218,208,68,221,38,155,125,73,102,199,97,9,75,211,22,193,
-7,30,134,25,120,126,252,31,254,35,180,214,8,33,110,3,203,252,159,182,77,
-182,110,147,136,229,32,8,95,71,81,136,16,150,49,198,34,49,198,130,81,217,
-182,205,216,216,216,26,80,183,24,42,12,67,186,158,135,215,235,225,7,65,
-234,192,184,103,222,14,54,222,210,216,122,195,175,227,67,148,82,41,44,5,
-8,75,32,165,52,182,176,44,11,105,108,238,8,224,100,231,3,115,51,147,204,
-206,22,201,185,123,156,182,127,146,78,147,146,132,192,4,71,172,99,197,239,
-175,31,153,155,158,74,170,89,8,50,249,41,90,245,205,75,38,24,2,228,208,
-38,205,159,111,159,184,54,110,19,71,17,194,118,136,85,31,173,66,252,126,
-76,70,74,113,41,192,26,134,221,250,6,87,114,130,216,119,137,3,23,191,125,
-72,63,232,177,127,212,102,97,229,49,145,82,26,192,62,15,208,38,124,186,
-191,73,193,137,209,94,155,65,167,5,104,188,64,97,48,44,60,120,134,147,203,
-95,172,128,16,16,43,92,51,118,65,42,180,239,50,232,182,12,224,24,207,235,
-226,50,193,226,195,231,100,243,19,73,221,11,0,173,6,52,171,239,201,246,
-91,248,238,9,122,16,130,214,132,178,128,43,139,44,61,122,145,132,207,43,
-173,112,248,249,29,197,171,57,68,28,163,123,167,248,126,128,138,76,29,123,
... 2143 lines suppressed ...
hooks/post-receive
--
codelite
|