Commit Graph

12 Commits

Author SHA1 Message Date
Przemyslaw Czerpak
f07d1b6ce5 2006-09-01 10:25 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/lang/msgcs852.c
  * harbour/source/lang/msgcsiso.c
  * harbour/source/lang/msgcskam.c
  * harbour/source/lang/msgcswin.c
    * typo fixed (Vojtech Obrdlik <vobrdlik centrum.cz>)
  * harbour/include/hbapicdp.h
  * harbour/source/codepage/Makefile
  + harbour/source/codepage/cpcs852.c
  + harbour/source/codepage/cpcsiso.c
  + harbour/source/codepage/cpcskam.c
  + harbour/source/codepage/cpcswin.c
  + harbour/source/codepage/uckam.c
  * harbour/doc/en/lang.txt
  * harbour/common.mak
    + added czech codepage support (Vojtech Obrdlik <vobrdlik centrum.cz>)
      Vojtech many thanks.
      We will have to fix our CDP code to work well with characters
      with the same wight - now sorting with such codepages does not
      work correctly, f.e. in CSISO:
        CHR(65)+CHR(204) > CHR(65)+CHR(201)
      but:
        CHR(65)+CHR(201) >= CHR(65)+CHR(204)
      as you can see comparison depends on string order:
        s1 > s2 but not s2 < s1
      It means that such codepages cannot be used in any sorting
      systems like indexes until we will not fix internal CPD logic.
      Alexander can you look at it?
      If not then please inform me and I'll work on it in some spare
      time.


  * harbour/source/rtl/do.c
    * minor RTE message simplification

  * harbour/source/rtl/gtos2/gtos2.c
    * casting

  * harbour/source/vm/dynsym.c
    + added __DYNSN2SYM( <cName> ) -> symbolItem

  * harbour/include/hbapi.h
  * harbour/source/vm/arrays.c
    + added supercast and superoffset members to hb_struArray structure

  * harbour/source/vm/classes.c
  * harbour/source/rtl/tclass.prg
    ! fixed calculation of instance area offsets
    ! fixed accessing instance variables with super casting
    + added selfclass casting
    + added support for sending 'exec' and 'name' messages to
      symbol items, f.e.:
         funcSym := (@funcName())
         ? "Exacuting:", funcSym:name
         funcSym:exec( param1, param2, ... )
    * changed __CLASSNAME() to be Clipper compatible
    * changed __CLSINST()/__CLASSINSTANCE() now accepts as third paramter
      function name - Clipper compatible
    ! fixed GPF trap in __OBJGETCLSNAME() when executed with wrong parameter
    * some other fixes and small speed improvement
2006-09-01 08:27:40 +00:00
Viktor Szakats
3cc9382678 2006-07-18 10:21 UTC+0100 Viktor Szakats (viktor.szakats syenar.hu)
* harbour/source/lang/msgcs852.c
   * harbour/source/lang/msgcsiso.c
   * harbour/source/lang/msgcskam.c
   * harbour/source/lang/msgcswin.c
     + Updates/fixes and more translated texts for Czech
       language modules. Thanks to:
       Vojtech Obrdlik <vobrdlik centrum.cz>

   * harbour/source/pp/pplib.c
     ! Fixed function names in trace calls.

   * harbour/source/rdd/dblist.prg
   *	harbour/source/rdd/dbsort.prg
   * harbour/source/rdd/dbstrux.prg
     + Minor improvements.
2006-07-18 08:34:15 +00:00
Antonio Linares
1bbad05cb0 added Microsoft initialization code 2005-11-03 09:41:04 +00:00
Przemyslaw Czerpak
694b32d5c7 2003-06-18 00:10 UTC+0200 Przemyslaw Czerpak <druzus@polbox.com>
* harbour/include/hbapilng.h
  * harbour/include/hblang.ch
  * harbour/source/lang/Makefile
  * harbour/source/lang/msg_tpl.c
  * harbour/source/lang/msgca.c
  * harbour/source/lang/msgcs852.c
  * harbour/source/lang/msgcsiso.c
  * harbour/source/lang/msgcskam.c
  * harbour/source/lang/msgcswin.c
  * harbour/source/lang/msgde.c
  * harbour/source/lang/msgdewin.c
  * harbour/source/lang/msgen.c
  * harbour/source/lang/msgeo.c
  * harbour/source/lang/msges.c
  * harbour/source/lang/msgeswin.c
  * harbour/source/lang/msgeu.c
  * harbour/source/lang/msgfr.c
  * harbour/source/lang/msggl.c
  * harbour/source/lang/msghe862.c
  * harbour/source/lang/msghewin.c
  * harbour/source/lang/msghr852.c
  * harbour/source/lang/msghriso.c
  * harbour/source/lang/msghu852.c
  * harbour/source/lang/msghucwi.c
  * harbour/source/lang/msghuwin.c
  * harbour/source/lang/msgid.c
  * harbour/source/lang/msgis850.c
  * harbour/source/lang/msgit.c
  * harbour/source/lang/msgko.c
  * harbour/source/lang/msgpl852.c
  * harbour/source/lang/msgpliso.c
  * harbour/source/lang/msgplmaz.c
  * harbour/source/lang/msgplwin.c
  * harbour/source/lang/msgpt.c
  * harbour/source/lang/msgro.c
  * harbour/source/lang/msgru866.c
  * harbour/source/lang/msgrukoi.c
  * harbour/source/lang/msgruwin.c
  * harbour/source/lang/msgsl852.c
  * harbour/source/lang/msgsliso.c
  * harbour/source/lang/msgslwin.c
  * harbour/source/lang/msgsr852.c
  * harbour/source/lang/msgsriso.c
  * harbour/source/lang/msgzhb5.c
  * harbour/source/lang/msgzhgb.c
  + harbour/source/lang/msgsrwin.c
    ! bug fixed in national msg system and new localization added
      (borrowed from xHarbour)

  + harbour/tests/langmsg.prg
    * simple test program for national messages
      I have to ask developpers to run it and check their national messages
2003-06-17 22:10:30 +00:00
Alexander S.Kresin
94292de568 2003-06-16 21:16 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su> 2003-06-16 17:19:16 +00:00
Antonio Linares
c1744bc05d New string added for ie HB_EI_XALLOCNULLSIZE 2002-01-06 13:37:33 +00:00
Viktor Szakats
696fce4f9a 2002-01-06 10:00 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu> 2002-01-06 09:17:59 +00:00
Viktor Szakats
37b052fc7a 2001-05-15 15:02 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu> 2001-05-15 13:02:07 +00:00
Ryszard Glab
780d535f1f ChangeLog 2000-07-27 10:15 UTC+0100 2000-07-27 08:10:42 +00:00
Viktor Szakats
6a0ab26de6 20000523-02:06 GMT+1 Victor Szakats <info@szelvesz.hu> 2000-05-23 00:03:41 +00:00
Luiz Rafael Culik
7a71ef51aa See changelog 20000519-23:50 GMT -3 2000-05-20 02:48:50 +00:00
Viktor Szakats
40025c2fe8 20000414-22:03 GMT+1 Victor Szakats <info@szelvesz.hu> 2000-04-14 20:01:22 +00:00