RadASM 2.2.0.1 C/C++ package bugtest.

Started by KetilO, April 18, 2005, 10:20:09 AM

Previous topic - Next topic

KetilO

Hi all

New upload

- Fixed small collapse bug in RAEdit
- Fixed caret movement problem in RAEdit when DBCS font (Chinese).
- Fixed delete char problem in RAEdit when DBCS font (Chinese).

KetilO

KetilO

Hi all

New upload:

- The correct CppParse.dll (Previous was the debug version)
- Fixed a bug in dialog editor that could cause RadASM to GPF.
- Updated Russian language file.

KetilO

BogdanOntanu

Wow ;)

This means i will be able to drop VC6 IDE soon ;)
:U
Ambition is a lame excuse for the ones not brave enough to be lazy.
http://www.oby.ro

KetilO

Hi BogdanOntanu

Shure, if you ..

#define WIN32_LEAN_AND_MEAN

and stay away from ActiveX an classes.  :green2

KetilO

KetilO

Hi all

New upload

- Fixed several problems in the AlexMenu addin.

KetilO

KetilO

Hi all

New upload

- The CppParser now support locals and structure code complete.

KetilO

wizzra

ketilO,

thats cool!
how about adding a auto convert '.' to '->' when accesing to a structure variale who is a pointer ?

like

MYSTRUCT* mys;

when typing: 'mys.myvar'

RadASM should convert it to

'mys->myvar'

regards,
-Wizzra

KetilO

Thanks wizzra

New upload.

Unfortunatly RadASM's wordlist does not know if a var is a pointer.

I made a few changes and you will get code complete on things like:

mys->myvar; and lnr=((HESELCHANGE *)lParam)->line;

KetilO

wizzra

well,
on '.' rad should check if the var is declaired with the prefix '*' (but also not vars such as ** and *** and so on.. :) )