Skip to content

Commit 051941b

Browse files
Updated icons
Improved Vcl Styles support Updated copyright text
1 parent 045abc5 commit 051941b

File tree

123 files changed

+2910
-2792
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+2910
-2792
lines changed

Main.dfm

+2,328-2,327
Large diffs are not rendered by default.

Main.pas

+13
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ TFrmMain = class(TForm)
8181
procedure ActionDisconnectUpdate(Sender: TObject);
8282
procedure ToolButton1Click(Sender: TObject);
8383
procedure ToolButtonExitClick(Sender: TObject);
84+
procedure TreeViewTasksCustomDrawItem(Sender: TCustomTreeView;
85+
Node: TTreeNode; State: TCustomDrawState; var DefaultDraw: Boolean);
8486
private
8587
FSettings: TSettings;
8688
Ctx : TRttiContext;
@@ -547,6 +549,17 @@ procedure TFrmMain.TreeViewTasksChange(Sender: TObject; Node: TTreeNode);
547549
end;
548550

549551

552+
procedure TFrmMain.TreeViewTasksCustomDrawItem(Sender: TCustomTreeView;
553+
Node: TTreeNode; State: TCustomDrawState; var DefaultDraw: Boolean);
554+
begin
555+
if not StyleServices.IsSystemStyle then
556+
if cdsSelected in State then
557+
begin
558+
TTreeView(Sender).Canvas.Brush.Color := StyleServices.GetSystemColor(clHighlight);
559+
TTreeView(Sender).Canvas.Font.Color := StyleServices.GetSystemColor(clHighlightText);
560+
end;
561+
end;
562+
550563
initialization
551564

552565
if not IsStyleHookRegistered(TCustomSynEdit, TScrollingStyleHook) then

Templates/TemplateConsoleAppBorlandCPP.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateConsoleAppCSharp.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateConsoleAppDelphi.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateConsoleAppDelphiSingleton.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateConsoleAppDelphiSingleton_TLB.pas

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Templates/TemplateConsoleAppDelphi_COM.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateConsoleAppDelphi_TLB.pas

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Templates/TemplateConsoleAppFPC.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateConsoleAppFPCSingleton.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateConsoleAppMicrosoftCPP.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateConsoleAppOxygen.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateEventsBorlandCpp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateEventsCSharp.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateEventsDelphi.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateEventsDelphiLate.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateEventsDelphi_COM.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateEventsFPC.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateEventsMicrosoft.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateEventsOxygen.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateNonStaticMethodInvokerBorlandCPP.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateNonStaticMethodInvokerCSharp.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateNonStaticMethodInvokerDelphi.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateNonStaticMethodInvokerDelphi_COM.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateNonStaticMethodInvokerDelphi_TLB.pas

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Templates/TemplateNonStaticMethodInvokerFPC.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateNonStaticMethodInvokerMicrosoftCPP.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateNonStaticMethodInvokerOxygen.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateStaticMethodInvokerBorlandCPP.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateStaticMethodInvokerCSharp.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateStaticMethodInvokerDelphi.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateStaticMethodInvokerDelphi_COM.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateStaticMethodInvokerDelphi_TLB.pas

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Templates/TemplateStaticMethodInvokerFPC.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateStaticMethodInvokerMicrosoftCPP.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Templates/TemplateStaticMethodInvokerOxygen.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This code was generated by the Wmi Delphi Code Creator (WDCC) Version [VERSIONAPP]
33
// http://code.google.com/p/wmi-delphi-code-creator/
44
// Blog http://theroadtodelphi.wordpress.com/wmi-delphi-code-creator/
5-
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2012
5+
// Author Rodrigo Ruz V. (RRUZ) Copyright (C) 2011-2013
66
//-----------------------------------------------------------------------------------------------------
77
//
88
// LIABILITY DISCLAIMER

Units/Misc/uCheckUpdate.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
{ The Original Code is uCheckUpdate.pas. }
1515
{ }
1616
{ The Initial Developer of the Original Code is Rodrigo Ruz V. }
17-
{ Portions created by Rodrigo Ruz V. are Copyright (C) 2011-2012 Rodrigo Ruz V. }
17+
{ Portions created by Rodrigo Ruz V. are Copyright (C) 2011-2013 Rodrigo Ruz V. }
1818
{ All Rights Reserved. }
1919
{ }
2020
{**************************************************************************************************}

0 commit comments

Comments
 (0)