mirror of https://gitlab.com/basile.b/dexed.git
fix, win32 compilation broken since b3d489d
This commit is contained in:
parent
467d7abeb1
commit
b85f3f8f29
|
@ -14,7 +14,7 @@
|
||||||
**********************************************************************}
|
**********************************************************************}
|
||||||
{$mode objfpc}
|
{$mode objfpc}
|
||||||
{$h+}
|
{$h+}
|
||||||
unit fpjson;
|
unit xfpjson;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
@ -5,7 +5,7 @@ unit fpjsonrtti;
|
||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, contnrs, typinfo, fpjson, rttiutils, jsonparser;
|
Classes, SysUtils, contnrs, typinfo, xfpjson, rttiutils, xjsonparser;
|
||||||
|
|
||||||
Const
|
Const
|
||||||
RFC3339DateTimeFormat = 'yyyy"-"mm"-"dd"T"hh":"nn":"ss';
|
RFC3339DateTimeFormat = 'yyyy"-"mm"-"dd"T"hh":"nn":"ss';
|
|
@ -28,7 +28,7 @@ unit jsonConf;
|
||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
SysUtils, Classes, fpjson, jsonscanner, jsonparser;
|
SysUtils, Classes, xfpjson, xjsonscanner, xjsonparser;
|
||||||
|
|
||||||
|
|
||||||
type
|
type
|
|
@ -14,12 +14,12 @@
|
||||||
**********************************************************************}
|
**********************************************************************}
|
||||||
{$mode objfpc}
|
{$mode objfpc}
|
||||||
{$h+}
|
{$h+}
|
||||||
unit jsonparser;
|
unit xjsonparser;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, fpJSON, jsonscanner;
|
Classes, SysUtils, xfpJSON, xjsonscanner;
|
||||||
|
|
||||||
Type
|
Type
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
{$mode objfpc}
|
{$mode objfpc}
|
||||||
{$h+}
|
{$h+}
|
||||||
|
|
||||||
unit jsonscanner;
|
unit xjsonscanner;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
@ -5,7 +5,7 @@ unit ce_dubproject;
|
||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, fpjson, jsonparser, jsonscanner, process, strutils, LazFileUtils,
|
Classes, SysUtils, xfpjson, xjsonparser, xjsonscanner, process, strutils, LazFileUtils,
|
||||||
ce_common, ce_interfaces, ce_observer, ce_dialogs, ce_processes;
|
ce_common, ce_interfaces, ce_observer, ce_dialogs, ce_processes;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
|
@ -6,7 +6,7 @@ interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, FileUtil, TreeFilterEdit, Forms, Controls, Graphics,
|
Classes, SysUtils, FileUtil, TreeFilterEdit, Forms, Controls, Graphics,
|
||||||
Dialogs, ExtCtrls, Menus, StdCtrls, Buttons, ComCtrls, jsonparser, fpjson,
|
Dialogs, ExtCtrls, Menus, StdCtrls, Buttons, ComCtrls, xjsonparser, xfpjson,
|
||||||
ce_widget, ce_common, ce_interfaces, ce_observer, ce_dubproject, ce_sharedres;
|
ce_widget, ce_common, ce_interfaces, ce_observer, ce_dubproject, ce_sharedres;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
Loading…
Reference in New Issue