I had a problem with some icons. They were not shown at runtime in c2j. After some debugging i have found that the icons (both .ico and .png) should be named with all lowercase in resources\resources\images folder.
Do you confirm this behaviour?
Thanks
Cikic Nenad
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Yes, this is the case. (See getImageUTL() in CWinImpl).
The motivation is that windows file system is case insensitive, but resources stored in a .jar file are case sensitive. To overcome this discrepancy, c2j forces lookup of resources based on them being case insensitive.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I had a problem with some icons. They were not shown at runtime in c2j. After some debugging i have found that the icons (both .ico and .png) should be named with all lowercase in resources\resources\images folder.
Do you confirm this behaviour?
Thanks
Cikic Nenad
Yes, this is the case. (See getImageUTL() in CWinImpl).
The motivation is that windows file system is case insensitive, but resources stored in a .jar file are case sensitive. To overcome this discrepancy, c2j forces lookup of resources based on them being case insensitive.
OK
Cikic Nenad