To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=81574
------- Additional comments from [EMAIL PROTECTED] Thu Oct 25 12:53:00 +0000
2007 -------
OK, so I have did the following in pj86 now (compared to the base milestone of
the cws):
1. added implicit constructors:
+ CurTOXType () : eType (static_cast<TOXTypes>(0)), nIndex (0) {};
+ CurTOXType (TOXTypes t, USHORT i) : eType (t), nIndex (i) {};
2. I changed one definition to use the constructor instead of struct
initialization, because that is an
error now with constructor:
- CurTOXType eCurType = {eSet, 0};
+ CurTOXType eCurType (eSet, 0);
3. removed extra (now it is extra ;-) initialization:
CurTOXType eRet;
- eRet.nIndex = 0;
Please review in pj86. Touched files:
sw/source/ui/inc/cnttab.hxx
sw/source/ui/index/cnttab.cxx
Thanks for your help. I think it is now even better solution ;-)
---------------------------------------------------------------------
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]