Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-05-23 21:35:34 +0000
committerslewis2007-05-23 21:35:34 +0000
commitd3087fcf58ac42b142442fec01639cc6d2c8af5a (patch)
tree02b8b99935f779892050ee85803e2335657344cb
parentfd965288be1752d4fc4483fd82908ae6e36ec5b6 (diff)
downloadorg.eclipse.ecf-d3087fcf58ac42b142442fec01639cc6d2c8af5a.tar.gz
org.eclipse.ecf-d3087fcf58ac42b142442fec01639cc6d2c8af5a.tar.xz
org.eclipse.ecf-d3087fcf58ac42b142442fec01639cc6d2c8af5a.zip
Added title image to chat room selection dialogv20070523-1440
-rw-r--r--framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/internal/presence/ui/dialogs/ChatRoomSelectionDialog.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/internal/presence/ui/dialogs/ChatRoomSelectionDialog.java b/framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/internal/presence/ui/dialogs/ChatRoomSelectionDialog.java
index f4880ae77..0c60f7932 100644
--- a/framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/internal/presence/ui/dialogs/ChatRoomSelectionDialog.java
+++ b/framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/internal/presence/ui/dialogs/ChatRoomSelectionDialog.java
@@ -18,6 +18,7 @@ import org.eclipse.ecf.internal.presence.ui.Messages;
import org.eclipse.ecf.presence.chatroom.IChatRoomInfo;
import org.eclipse.ecf.presence.chatroom.IChatRoomManager;
import org.eclipse.ecf.presence.ui.MultiRosterAccount;
+import org.eclipse.ecf.ui.SharedImages;
import org.eclipse.jface.dialogs.TitleAreaDialog;
import org.eclipse.jface.viewers.DoubleClickEvent;
import org.eclipse.jface.viewers.IDoubleClickListener;
@@ -68,6 +69,7 @@ public class ChatRoomSelectionDialog extends TitleAreaDialog {
MultiRosterAccount[] accounts) {
super(parentShell);
this.accounts = accounts;
+ setTitleImage(SharedImages.getImage(SharedImages.IMG_CHAT_WIZARD));
}
protected Control createDialogArea(Composite parent) {

Back to the top