always include uUtils _after_ SysUtils
authorsheepluva
Sun, 15 May 2016 13:18:34 +0200
changeset 11821 d8844d4c67de
parent 11820 fe339879cf75
child 11822 4600dcb9db4f
always include uUtils _after_ SysUtils
hedgewars/LuaPas.pas
hedgewars/uLandObjects.pas
hedgewars/uRenderUtils.pas
hedgewars/uScript.pas
hedgewars/uTouch.pas
hedgewars/uVideoRec.pas
--- a/hedgewars/LuaPas.pas	Sun May 15 11:37:07 2016 +0200
+++ b/hedgewars/LuaPas.pas	Sun May 15 13:18:34 2016 +0200
@@ -805,7 +805,7 @@
 implementation
 
 uses
-  SysUtils;
+  SysUtils, uUtils;
 
 (*****************************************************************************)
 (*                            luaconfig.h                                    *)
--- a/hedgewars/uLandObjects.pas	Sun May 15 11:37:07 2016 +0200
+++ b/hedgewars/uLandObjects.pas	Sun May 15 13:18:34 2016 +0200
@@ -34,7 +34,7 @@
 
 implementation
 uses uStore, uConsts, uConsole, uRandom, uSound
-     , uTypes, uVariables, uUtils, uDebug, SysUtils
+     , uTypes, uVariables, uDebug, SysUtils, uUtils
      , uPhysFSLayer;
 
 const MaxRects = 512;
--- a/hedgewars/uRenderUtils.pas	Sun May 15 11:37:07 2016 +0200
+++ b/hedgewars/uRenderUtils.pas	Sun May 15 13:18:34 2016 +0200
@@ -39,7 +39,7 @@
 function  RenderSpeechBubbleTex(s: ansistring; SpeechType: Longword; font: THWFont): PTexture;
 
 implementation
-uses uUtils, uVariables, uConsts, uTextures, SysUtils, uDebug;
+uses uVariables, uConsts, uTextures, SysUtils, uUtils, uDebug;
 
 procedure DrawRoundRect(rect: PSDL_Rect; BorderColor, FillColor: Longword; Surface: PSDL_Surface; Clear: boolean);
 var r: TSDL_Rect;
--- a/hedgewars/uScript.pas	Sun May 15 11:37:07 2016 +0200
+++ b/hedgewars/uScript.pas	Sun May 15 13:18:34 2016 +0200
@@ -75,7 +75,6 @@
     uTypes,
     uVariables,
     uCommands,
-    uUtils,
     uCaptions,
     uDebug,
     uCollisions,
@@ -83,6 +82,7 @@
     uTextures,
     uLandGraphics,
     SysUtils,
+    uUtils,
     uIO,
     uVisualGearsList,
     uGearsHandlersMess,
--- a/hedgewars/uTouch.pas	Sun May 15 11:37:07 2016 +0200
+++ b/hedgewars/uTouch.pas	Sun May 15 13:18:34 2016 +0200
@@ -22,7 +22,7 @@
 
 interface
 
-uses SysUtils, uConsole, uVariables, SDLh, uFloat, uConsts, uCommands, GLUnit, uTypes, uCaptions, uAmmos, uWorld;
+uses SysUtils, uUtils, uConsole, uVariables, SDLh, uFloat, uConsts, uCommands, GLUnit, uTypes, uCaptions, uAmmos, uWorld;
 
 
 procedure initModule;
--- a/hedgewars/uVideoRec.pas	Sun May 15 11:37:07 2016 +0200
+++ b/hedgewars/uVideoRec.pas	Sun May 15 13:18:34 2016 +0200
@@ -48,7 +48,7 @@
 procedure freeModule;
 
 implementation
-uses uVariables, uUtils, GLunit, SDLh, SysUtils, uIO, uMisc, uTypes, uDebug;
+uses uVariables, GLunit, SDLh, SysUtils, uUtils, uIO, uMisc, uTypes, uDebug;
 
 type TAddFileLogRaw = procedure (s: pchar); cdecl;
 const AvwrapperLibName = 'libavwrapper';