To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92822





------- Additional comments from [EMAIL PROTECTED] Thu Oct  9 17:07:41 +0000 
2008 -------
There's a problem: in Leopard the return value is NSInteger (which is typedef'ed
int), in Tiger it is "long". Indeed this is a clash; if we compiled for 64 bit
this would not be compatible. However this patch might work for both build
targets (actually what is the correct way to find out the build target ?). If
this works for you I can commit it to CWS vcl95.

Index: salframeview.mm
===================================================================
--- salframeview.mm     (revision 262048)
+++ salframeview.mm     (working copy)
@@ -1129,7 +1129,13 @@
     return 0;
 }
 
+#ifdef MAC_OS_X_VERSION_10_5
+/* build target 10.5 or greater */
+- (NSInteger)conversationIdentifier
+#else
+/* build target 10.4 */ 
 - (long)conversationIdentifier
+#endif
 {
     return (long)self;
 }

---------------------------------------------------------------------
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]

Reply via email to