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


User er changed the following:

                What    |Old value                 |New value
================================================================================
        Target milestone|OOo 2.1                   |OOo 2.x
--------------------------------------------------------------------------------




------- Additional comments from [EMAIL PROTECTED] Fri Oct 27 10:24:07 -0700 
2006 -------
As communicated with 'cn' and 'sba' we'll remove this issue from CWS
i18n27. The related overall code changes to the calendar source file are
very small and effectively only remove a possible unwanted side effect.

However, there is some yet unidentified behavior to be investigated for
the Jewish calendar. The testcase script portion of method _setValue()

    short[] fields = new short[]{CalendarFieldIndex.DAY_OF_MONTH,
                                 CalendarFieldIndex.HOUR,
                                 CalendarFieldIndex.MINUTE,
                                 CalendarFieldIndex.SECOND,
                                 CalendarFieldIndex.MILLISECOND,
                                 CalendarFieldIndex.YEAR,
                                 CalendarFieldIndex.MONTH
    };
    for (int k=0; k<fields.length;k++) {
        //log.println("Setting: " + names[k]+" to "+ valueSet[k]);
        oObj.setDateTime(0.0);
        short set = oObj.getValue(fields[k]);
        if (fields[k] == CalendarFieldIndex.MONTH) set = newValue;
        oObj.setValue(fields[k],set);
        short get = oObj.getValue(fields[k]);
        if (get != set) {
            error += "failed for "+names[k]+" expected "+
                        set+" gained "+get+" ; ";
        }
    }

with newValue==2 leads to the condition (get != set) being fulfilled,
which is strange enough.


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