[porting-issues] [Issue 70664] WaE on Mac OS X: autodoc

2008-02-13 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70664


User pjanik changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Feb 13 20:14:16 + 
2008 ---
Closing.



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



[porting-issues] [Issue 70664] WaE on Mac OS X: autodoc

2008-02-11 Thread fs
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70664


User fs changed the following:

What|Old value |New value

  CC|'cloph,hjs'   |'cloph,fs,hjs'





--- Additional comments from [EMAIL PROTECTED] Mon Feb 11 09:42:45 + 
2008 ---
fs-pjanik,cloph: Can you confirm this doesn't happen in a current MWS, so we
can close this issue?


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



[porting-issues] [Issue 70664] WaE on Mac OS X: autodoc

2008-01-20 Thread cloph
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70664


User cloph changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED

Keywords|  |oooqa





--- Additional comments from [EMAIL PROTECTED] Sun Jan 20 21:21:56 + 
2008 ---
verified.
Compiles with -Werror on Mac without a breaker. And as there are no changes in
the module at all, there's nothing else to verify :-)

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



[porting-issues] [Issue 70664] WaE on Mac OS X: autodoc

2007-12-22 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70664


User pjanik changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Sat Dec 22 09:45:43 + 
2007 ---
Removed autodoc from exceptions in pj89.



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



[porting-issues] [Issue 70664] WaE on Mac OS X: autodoc

2007-12-21 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70664


User pjanik changed the following:

What|Old value |New value

  CC|''|'cloph,hjs'

 Assigned to|np|pjanik

  Status|STARTED   |NEW





--- Additional comments from [EMAIL PROTECTED] Fri Dec 21 20:18:30 + 
2007 ---
Looks like this code is no longer there and we can mark autodoc as WaE clean 
;-) At least on Intel.

Taking over.

cloph: can you please WaE in autodoc?



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



[porting-issues] [Issue 70664] WaE on Mac OS X: autodoc

2006-10-27 Thread np
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70664


User np changed the following:

What|Old value |New value

  Status|NEW   |STARTED





--- Additional comments from [EMAIL PROTECTED] Fri Oct 27 02:55:30 -0700 
2006 ---
 String sCe( pNext, (bMember ? csv::str::size(pPastNext-pNext) :
csv::str::maxsize) );

csv::str::size is a typedef of ::size_t, csv::str::maxsize is an enum value. A
solution is to just cast csv::str::maxsize as well:

String sCe( pNext, (bMember ? csv::str::size(pPastNext-pNext) :
csv::str::size(csv::str::maxsize)) );

As soon as all compilers support this, a better solution would be, to change the
declaration of maxsize this way:

struct str
{ typedef ::size_t size;

- enum { maxsize = size(-1) };
+ const size maxsize = size(-1);

};

You can do whatever seems to be the appropriate thing to make the AQUA port 
run. 
I will bring a fix in the master.


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



[porting-issues] [Issue 70664] WaE on Mac OS X: autodoc

2006-10-27 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70664


User pjanik changed the following:

What|Old value |New value

Target milestone|---   |DevTools





--- Additional comments from [EMAIL PROTECTED] Fri Oct 27 11:45:07 -0700 
2006 ---
np: thanks!

We will wait for your fix and will keep autodoc module building with warnings
are errors turned off.


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



[porting-issues] [Issue 70664] WaE on Mac OS X: autodoc

2006-10-23 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70664


User sb changed the following:

What|Old value |New value

 Assigned to|sb|np





--- Additional comments from [EMAIL PROTECTED] Mon Oct 23 04:29:03 -0700 
2006 ---
@np:  Please take over.

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



[porting-issues] [Issue 70664] WaE on Mac OS X: autodoc

2006-10-20 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70664
 Issue #|70664
 Summary|WaE on Mac OS X: autodoc
   Component|porting
 Version|680m189
Platform|All
 URL|
  OS/Version|Mac OS X
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|MacOSX
 Assigned to|sb
 Reported by|pjanik





--- Additional comments from [EMAIL PROTECTED] Fri Oct 20 09:21:58 -0700 
2006 ---
/Volumes/Build/oo/AQUA/BuildDir/ooo_SRC680_m189_src/autodoc/source/ary/idl/ipi_2s.cxx:
In member function 'void ary::idl::SecondariesPilot_Inst::assign_CurLink(char*,
const csv::String, const csv::String, bool, int)':
/Volumes/Build/oo/AQUA/BuildDir/ooo_SRC680_m189_src/autodoc/source/ary/idl/ipi_2s.cxx:564:
warning: enumeral and non-enumeral type in conditional expression

The code there is:

String sCe( pNext, (bMember ? csv::str::size(pPastNext-pNext) :
csv::str::maxsize) );

Any hint?

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