To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=69613
                 Issue #|69613
                 Summary|Mac OS X: transex3 and warning are errors cleanup
               Component|porting
                 Version|OOo 2.0.4
                Platform|All
                     URL|
              OS/Version|All
                  Status|NEW
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|PATCH
                Priority|P3
            Subcomponent|MacOSX
             Assigned to|pjanik
             Reported by|pjanik





------- Additional comments from [EMAIL PROTECTED] Sun Sep 17 06:18:08 -0700 
2006 -------
Only one problem in transex3:

xmlparse.cxx: printf("size=%d\n",lMap.size());

int vs size_t problem.

--- xmlparse.cxx        14 Aug 2006 17:11:38 -0000      1.15
+++ xmlparse.cxx        17 Sep 2006 13:15:53 -0000
@@ -1421,7 +1421,7 @@
 void XMLUtil::dump(){
 /*****************************************************************************/
        int cnt=1;
-    printf("size=%d\n",lMap.size());
+    printf("size=%d\n", (int) lMap.size());
     for(HashMap::iterator pos = lMap.begin(); pos != lMap.end() ; ++pos){
         fprintf(stdout,"key=%s , value=%d ,
no=%d\n",pos->first.GetBuffer(),pos->second,cnt++);
     }

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