To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=86882 Issue #|86882 Summary|unsigned int -> long direct cast with geometry setting |s Component|gsl Version|DEV300m1 Platform|Opteron/x86_64 URL| OS/Version|Linux Status|NEW Status whiteboard| Keywords| Resolution| Issue type|PATCH Priority|P3 Subcomponent|code Assigned to|pl Reported by|cmc
------- Additional comments from [EMAIL PROTECTED] Mon Mar 10 15:41:46 +0000 2008 ------- Patch attached, as described at https://bugzilla.redhat.com/show_bug.cgi?id=429632 with fluxbox the window decorations can have a -1 value for their width. We cast this in a few places to long and work with that value, on x86_64 the size of an unsigned int is less the size of long so the long is equal to the original unsigned int value. The intention is clearly to force the value to signed. So attached is a patch that remove the (long) cast on values that are already long to remove some dead wood, and then casts from unsigned int to int the geometry values in question. Makes menus on fluxbox appear in the correct place, and not jammed up against the right side of the scrren --------------------------------------------------------------------- Please do not reply to this automatically generated notification from Issue Tracker. Please log onto the website and enter your comments. http://qa.openoffice.org/issue_handling/project_issues.html#notification --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
