1
I Use This!
Inactive

Commits : Listings

Analyzed about 6 hours ago. based on code collected about 6 hours ago.
Jul 20, 2024 — Jul 20, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
* mcc/private.h: restored MEMF_SHARED definition. More... over 16 years ago
* mcc/SpellChecker.c: replaced the obsolete CreateMsgPortl() and DeleteMsgPort() calls with AllocSysObject() and FreeSysObject() call for the OS4 build. More... over 16 years ago
* mcc/Dispatcher.c: replaced the obsolete CreatePool() and DeletePool() calls with AllocSysObject() and FreeSysObject() call for the OS4 build. Also restored the old MEMF_ANY memory flags for the other platforms. For OS4 MEMF_SHARED will be used as before. More... over 16 years ago
* mcc/Dispatcher.c: added MEMF_CLEAR to the pool's memory flags to make sure that every allocation is cleared, as it seems the most prominent crashes are caused by unrestricted string accesses (i.e. by strlen() operating after the trailing NUL byte). More... over 16 years ago
* mcc/EditorStuff.c: added the usual ENTER()/RETURN() macros the the UTF8 conversion function. More... over 16 years ago
* mcc/EditorStuff.c: slightly reworked the obscure width calculation in the UpdateChange() function and added a missing LEAVE() macro call. More... over 16 years ago
When pasting UTF-8 try non-recursive compatibility decomposition if there is no equivalent mapping More... over 16 years ago
Accidentally MorphOS code was using UNICODE_UTF8 when it should have been CODESET_UTF8 (although both are using same values) More... over 16 years ago
Added support for Unicode text paste from clipboard More... over 16 years ago
* mcc/HandleARexx.c: the GOTOLINE and GOTOCOLUMN commands now return the final line/column number instead of the boolean value TRUE. This makes it possible to immediately check if the cursor movement has been done correctly. This fixes bug #2045395. Note: Don't forget to FreeVec() the returned string as stated in the Autodocs!!!!! More... almost 17 years ago
Simplified MorphOS 2 custom pointer code and disabled layer visibility check for M2 More... about 17 years ago
* mcc/MixedFunctions.c, mcc/PrintLineWithStyles.c: removed the kerning check for proportional fonts upon setting the cursor to a new position. This caused no clipping and hence some additional pixels left of the line's first character when changing that character to be underlined and then setting the cursor somewhere else. Now clipping will be enabled for all proportional fonts regardless of any kerning information. This fixes bug #1896999. Additonally setting any style (bold, italic, underlined) is now done with help of AskSoftStyle() in case a certain font for example cannot be underlined. More... about 17 years ago
- updated svn properties More... about 17 years ago
* misc: final v15.27 release preparations More... about 17 years ago
* mcc/HandleInput.c: slightly reverted the last change to achieve a flicker free custom select pointer as otherwise a user might end up with the standard mouse pointer under some circumstances. More... about 17 years ago
* mcc/HandleInput.c: fixed the mouse pointer flickering which was present when moving the mouse throughout a TE.mcc object. More... about 17 years ago
* mcc/MixedFunctions.c: fixed a potential NUL pointer access which might have caused some crashes. More... about 17 years ago
- cosmetic changes More... about 17 years ago
* #?/vastubs.c, #?/Makefile: added vararg stubs for OS3 to be able to link against clib2 which misses these stubs. More... over 17 years ago
* mcp/locale/swedish.ct: Updated according to changes. More... over 17 years ago
* #?/Makefile: removed -lm from the linker libs as nothing needs floating point math. Also added dump as target. More... over 17 years ago
* mcc/HandleInput.c: changed the AmigaOS4 WheelX/WheelY scroll wheel interpretation to respect the wheel acceleration factor rather than always scrolling the same distance. This should increase the scroll wheel speed in case the wheel is used more quickly and the wheel acceleration factor is properly configured in the SYS:Prefs/Input configuration. More... over 17 years ago
* Debug.h: replaced all abort() usages in our ASSERT() macros with the respective calls to assert(). This should prevent the MorphOS compile from not linking and be a bit more intuitiv. More... over 17 years ago
* Debug.h: replaced all abort() usages in our ASSERT() macros with the respective calls to assert(). This should prevent the MorphOS compile from not linking and be a bit more intuitiv. More... over 17 years ago
* mcc/ExportBlock.c: make use of the new flag macros. More... over 17 years ago
* mcc/TextEditor-Test.c: fixed a typo. More... over 17 years ago
* mcc/Debug.c: the flag macros are now local to Debug.c as in our other classes. More... over 17 years ago
* mcc/MixedFunctions.c, mcc/Dispatcher.c, mcc/GetSetAttrs.c, mcc/private.h: hopefully fixed the "phantom cursor" bug. The inactive cursor was not erased properly in all cased leaving visible phantom cursors behind. Now TE.mcc remembers the current state of the cursor (active, inactive, off) to perform the correct state changes. More... over 17 years ago
- final 15.26 release preparations More... over 17 years ago
* mcc/BlockOperators.c: fixed a bug in the CutBlock2() function where using the RemoveChars() function on an empty top line caused a selected area to remain selected, even after the cut operation. This should completely fix bug #1884875 reported on the YAM bugtracker. More... over 17 years ago