1
I Use This!
Inactive

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Jul 18, 2024 — Jul 18, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
* mcc/MixedFunctions.c: the recently changed ExpandLine() and CompressLine() functions used the wrong length. This could lead to visibly truncated lines. More... over 15 years ago
* mcc/BlockOperators.c, mcc/ExportHook.c: avoid allocating zero sized buffers and make sure not to produce memory leaks when getting a block's contents. An empty last line caused leaks and false error messages about not enough memory for the undo buffer. This was yet an other of Allan's ancient bugs... More... over 15 years ago
* mcc/Debug.c: added BLOCK debug class. More... over 15 years ago
* mcc/TextEditor-Test.c: the debug stuff was initialized after the starting the clipboard server which requires a fully set up debug environment. More... over 15 years ago
* mcc/ColorOperators.c, mcc/StyleOperators.c, mcc/ImportHook.c: added a missing #include. More... over 15 years ago
* mcc/SpellChecker.c: the spell checker no longer treats a missing ENV:Found variable as a failure and thus will no longer DisplayBeep() in this case. More... almost 16 years ago
* mcc/Dispatcher.c: fixed some missing or false RETURN() macro calls. More... almost 16 years ago
* mcc/misc: added an allocation size counter to each line to get rid of the necessity to peek around in memory to get an allocation's size. More... almost 16 years ago
* mcc/misc: added a proper definition for "no separator" and use it all over the place. More... almost 16 years ago
* mcc/misc: replaced all "pointer+offset" style string accesses by "pointer[offset]". More... almost 16 years ago
* mcc/misc: cleaned up the dispatcher a bit. Now all method functions have the usual class/object/message parameters. More... almost 16 years ago
* mcc/TextEditor-Test.c: fixed wrong type of GfxBase for the MOS build. More... almost 16 years ago
* mcc/BlockOperators.c: cutting a line to the clipboard and deleting complete lines will now free the attached color informations as well. Before only the text and the styles were freed which means this was a potential memory leak. More... almost 16 years ago
* mcc/Dispatcher.c: the OM_DISPOSE method will now free all lines together with their contents, styles and colors. Although we are using a per-instance memory pool this is not absolutely necessary to avoid memory leaks, but it is bad style to rely on such features. More... almost 16 years ago
* mcc/Debug.c: implemented the memory tracking for the debug build as known from YAM to catch possible memory leaks. More... almost 16 years ago
* mcc/Debug.c: implemented the memory tracking for the debug build as known from YAM to catch possible memory leaks. More... almost 16 years ago
* mcc/misc: added Debug.h as a sepatate #include statement More... almost 16 years ago
* mcc/misc: added Debug.h as a sepatate #include statement More... almost 16 years ago
* mcc/UndoFunctions.c: clear the clip pointer after freeing it. More... almost 16 years ago
* mcc/UndoFunctions.c: when reusing an undo entry the former contents were not erased and could lead to double freeing if that entry contained a clip of pasted or deleted text. Now the contents are always cleared. More... almost 16 years ago
* mcc/misc, mcp/misc: again *LOTS* of code cleanup to make this monster more readable and understandable. More... almost 16 years ago
* mcc/UndoFunctions.c, mcc/misc: changed the data parameter of AddToUndoBuffer() to be "void *". More... almost 16 years ago
* mcc/SpellChecker.c: removed some superflous debug output. More... almost 16 years ago
* mcc/Debug.c, mcc/SpellChecker.c: added the SPELL debug flag to get some debug output from the spell checking process. More... almost 16 years ago
* mcc/SpellChecker.c: added the usual ENTER()/LEAVE() macro calls. More... almost 16 years ago
* mcc/UndoFunctions.c, mcc/Methods.c: fixed a double FreeMem() call and a copy'n'paste bug which prevented a proper redraw after undoing the deletion of a text block. More... almost 16 years ago
* mcc/StyleOperators.c: added a missing notification when the style changed from bold to non-bold. More... almost 16 years ago
* mcp/CreatePrefsGroup.c: removed the "+-5" part from the undo level slider, because the new Undo/Redo management doesn't need these additional steps anymore. More... almost 16 years ago
* mcc/UndoFunctions.c: reimplemented the complete Undo/Redo handling from scratch. Before lots of temporary pointers were used and had to be kept in sync, which most probably did not always happen. It is really amazing how complicated such a trivial handling can be implemented. Shame on you, Allan! More... almost 16 years ago
* mcc/AllocFunctions.c: removed some TAB characters. More... almost 16 years ago