You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vasily Zakharov (JIRA)" <ji...@apache.org> on 2007/07/23 03:30:31 UTC

[jira] Updated: (HARMONY-4491) [classlib][awt] Exception when trying to create custom cursor

     [ https://issues.apache.org/jira/browse/HARMONY-4491?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vasily Zakharov updated HARMONY-4491:
-------------------------------------

    Attachment: Harmony-4491-Test.patch
                Harmony-4491-Fix.patch

Attached fix patch implementing the solution described above, and the test patch containing the regression test.


> [classlib][awt] Exception when trying to create custom cursor
> -------------------------------------------------------------
>
>                 Key: HARMONY-4491
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4491
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Dmitriy Matveev
>         Attachments: Harmony-4491-Fix.patch, Harmony-4491-Test.patch
>
>
> import java.awt.Cursor;
> import java.awt.Point;
> import java.awt.Toolkit;
> public class TestCursor {
>     public static void main(String[] args) {
>         Toolkit tk = Toolkit.getDefaultToolkit();
>         byte b[] = { (byte) 0 };
>         try{
>             Cursor blankCursor =
>                 tk.createCustomCursor( tk.createImage( b ), new Point(0, 0), "" );
>         }catch(IndexOutOfBoundsException e){
>             e.printStackTrace();
>         }
>     }
> }
> Exception below:
> java.lang.IndexOutOfBoundsException: invalid hotSpot
> 	at java.awt.Toolkit.createCustomCursor(Toolkit.java:740)
> 	at JavaTest.TestFonts2D.main(TestFonts2D.java:51)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.