1) Update fastpath.

2) Update JNIWrapper.

git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@6958 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Derek DeMoro
2007-02-05 18:41:06 +00:00
committed by derek
parent ea8d619580
commit 10181c89b7
4 changed files with 10 additions and 12 deletions

View File

@ -97,7 +97,9 @@
<root url="jar://$MODULE_DIR$/../lib/dist/smackx.jar!/" /> <root url="jar://$MODULE_DIR$/../lib/dist/smackx.jar!/" />
</CLASSES> </CLASSES>
<JAVADOC /> <JAVADOC />
<SOURCES /> <SOURCES>
<root url="file://$MODULE_DIR$/../../../smack/source" />
</SOURCES>
</library> </library>
</orderEntry> </orderEntry>
<orderEntry type="module-library" exported=""> <orderEntry type="module-library" exported="">
@ -169,7 +171,9 @@
<root url="jar://$MODULE_DIR$/../lib/dist/smack.jar!/" /> <root url="jar://$MODULE_DIR$/../lib/dist/smack.jar!/" />
</CLASSES> </CLASSES>
<JAVADOC /> <JAVADOC />
<SOURCES /> <SOURCES>
<root url="file://$MODULE_DIR$/../../../smack/source" />
</SOURCES>
</library> </library>
</orderEntry> </orderEntry>
<orderEntry type="module-library" exported=""> <orderEntry type="module-library" exported="">
@ -190,15 +194,6 @@
<SOURCES /> <SOURCES />
</library> </library>
</orderEntry> </orderEntry>
<orderEntry type="module-library" exported="">
<library>
<CLASSES>
<root url="jar://$MODULE_DIR$/../lib/dist/syntheticaBlackMoon.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
<orderEntry type="module-library" exported=""> <orderEntry type="module-library" exported="">
<library> <library>
<CLASSES> <CLASSES>

Binary file not shown.

Binary file not shown.

View File

@ -1039,7 +1039,10 @@ public class ChatContainer extends SparkTabbedPane implements MessageListener, C
if (room instanceof ChatRoomImpl) { if (room instanceof ChatRoomImpl) {
final ChatRoomImpl chatRoomImpl = (ChatRoomImpl)room; final ChatRoomImpl chatRoomImpl = (ChatRoomImpl)room;
if (!chatRoomImpl.isIconHandler()) { if(chatRoomImpl.getAlternativeIcon() != null){
tab.setIcon(chatRoomImpl.getAlternativeIcon());
}
else if (!chatRoomImpl.isIconHandler()) {
Presence presence = chatRoomImpl.getPresence(); Presence presence = chatRoomImpl.getPresence();
Icon icon = SparkManager.getUserManager().getTabIconForPresence(presence); Icon icon = SparkManager.getUserManager().getTabIconForPresence(presence);
tab.setIcon(icon); tab.setIcon(icon);