2011-02-17 13:57 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* src/rtl/achoice.prg
+ Added TOFIX.
* src/rtl/hbrandom.c
! Fixed type and initialization of a variable.
* utils/hbmk2/hbmk2.prg
* Formatting.
This commit is contained in:
@@ -16,6 +16,16 @@
|
|||||||
The license applies to all entries newer than 2009-04-28.
|
The license applies to all entries newer than 2009-04-28.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
2011-02-17 13:57 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
|
||||||
|
* src/rtl/achoice.prg
|
||||||
|
+ Added TOFIX.
|
||||||
|
|
||||||
|
* src/rtl/hbrandom.c
|
||||||
|
! Fixed type and initialization of a variable.
|
||||||
|
|
||||||
|
* utils/hbmk2/hbmk2.prg
|
||||||
|
* Formatting.
|
||||||
|
|
||||||
2011-02-17 10:28 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
|
2011-02-17 10:28 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
|
||||||
* src/rtl/hbrandom.c
|
* src/rtl/hbrandom.c
|
||||||
! Typo in comment. [Tamas]
|
! Typo in comment. [Tamas]
|
||||||
|
|||||||
@@ -11,6 +11,15 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* TOFIX:
|
||||||
|
---
|
||||||
|
#include "inkey.ch"
|
||||||
|
CLS
|
||||||
|
KEYBOARD Chr( K_DOWN ) + Chr( K_UP ) // bogus '2' appears out of the area here.
|
||||||
|
AChoice( 0, 0, 0, 0, { "1", "2" } )
|
||||||
|
---
|
||||||
|
*/
|
||||||
|
|
||||||
#include "achoice.ch"
|
#include "achoice.ch"
|
||||||
#include "color.ch"
|
#include "color.ch"
|
||||||
#include "common.ch"
|
#include "common.ch"
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
#include <float.h>
|
#include <float.h>
|
||||||
|
|
||||||
/* Globally available data, no need to MT it */
|
/* Globally available data, no need to MT it */
|
||||||
static volatile int s_fInit = 0;
|
static volatile HB_BOOL s_fInit = HB_FALSE;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* HB_RANDOM
|
* HB_RANDOM
|
||||||
|
|||||||
@@ -7282,7 +7282,6 @@ STATIC FUNCTION checkDepTime( hbmk, cFile, tTime )
|
|||||||
|
|
||||||
RETURN .F.
|
RETURN .F.
|
||||||
|
|
||||||
|
|
||||||
STATIC FUNCTION clpfile_read( cFileName )
|
STATIC FUNCTION clpfile_read( cFileName )
|
||||||
LOCAL cFileBody := MemoRead( cFileName )
|
LOCAL cFileBody := MemoRead( cFileName )
|
||||||
LOCAL aFiles
|
LOCAL aFiles
|
||||||
|
|||||||
Reference in New Issue
Block a user