- 07 Jul, 2008 37 commits
-
-
Nikolay Sivov authored
-
Nikolay Sivov authored
-
Nikolay Sivov authored
-
Dylan Smith authored
The error was a memory access of a freed object. In ME_AddUndoItem I checked the top of the undo stack to end a coalescing undo transaction, assuming that this should be either a valid undo item, or NULL, instead it was already freed.
-
Dylan Smith authored
-
Dylan Smith authored
-
Stefan Dösinger authored
Constant numbers start at 0, and the loading loop has a for(i; i < dirtyconsts; i++). This means that the highest dirty constant isn't loaded correctly. Rather than replacing the < with <=, which would make it impossible to have no dirty constant, add 1 to the dirty constant counter.
-
Alexander Nicolaysen Sørnes authored
-
Alexander Nicolaysen Sørnes authored
-
Andrew Talbot authored
-
Andrew Talbot authored
-
Andrew Talbot authored
-
Andrew Talbot authored
-
Andrew Talbot authored
-
Andrew Talbot authored
-
Andrew Talbot authored
-
Alexandre Julliard authored
-
Alexandre Julliard authored
-
Alexandre Julliard authored
-
Alexandre Julliard authored
-
Rob Shearman authored
rpcrt4: Clear the memory of embedded complex types in ComplexUnmarshall when fMustAlloc is TRUE to avoid passing uninitialised memory to the unmarshaller. Found by Valgrind.
-
Vitaliy Margolen authored
Programs looking for this flag to verify if FF is present. And on which axes.
-
Vitaliy Margolen authored
-
Vitaliy Margolen authored
-
Vitaliy Margolen authored
-
Vitaliy Margolen authored
-
Eric Pouech authored
winhelp: Remove the search button, hook the index button to the Finder, and add a new summary button to go back to main page.
-
Eric Pouech authored
-
Maarten Lankhorst authored
-
Maarten Lankhorst authored
Fixes some graphical glitches that may occur otherwise.
-
Maarten Lankhorst authored
-
Maarten Lankhorst authored
-
Rob Shearman authored
-
Rob Shearman authored
widl: Rename find_type_helper, find_type and find_type2 to find_type, find_type_error and find_type_error2 respectively.
-
Rob Shearman authored
-
Dylan Smith authored
-
Dylan Smith authored
The caret's x position is stored in ME_TextEditor.nUDArrowX so that when the caret is moved up or down, it will stay along the same horizontal position, or at the end of a line. Unfortunately, the value stored in nUDArrowX was being unconditionally discarded in ME_ArrowKey, preventing it from serving its purpose.
-
- 04 Jul, 2008 3 commits
-
-
Dylan Smith authored
When dragging the scrollbar thumb with the mouse, the mouse is able to move away from the scrollbar and keep scrolling so long as it isn't too far away from the scrollbar. This makes it easier to quickly scroll with the mouse. All that this patch changes is the distance that the mouse can be moved away from the scrollbar before it is consider outside of the scrollbar and returns to its original position. The distances are proportional to the size of the scrollbar.
-
Dylan Smith authored
Previously the window size and position was obtained in such a way that when the window is closed while minimized, it would be hidden when the program is started again. Closing a maximized window would save the size of the maximized window and use it as the normal/restored size when the program is started again.
-
Vladimir Pankratov authored
-