Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-02-21 04:18:26 +0000
committerslewis2005-02-21 04:18:26 +0000
commitf9581fbd4c18d6e0a9c445b211da11fa1ef3c09a (patch)
tree1f9a8d1e677cd523a2bd8ec036765d6bac277e18
parentd40f78609f0e4740178d50776e93587a315e863c (diff)
downloadorg.eclipse.ecf-f9581fbd4c18d6e0a9c445b211da11fa1ef3c09a.tar.gz
org.eclipse.ecf-f9581fbd4c18d6e0a9c445b211da11fa1ef3c09a.tar.xz
org.eclipse.ecf-f9581fbd4c18d6e0a9c445b211da11fa1ef3c09a.zip
Bug fix in RosterView class
-rw-r--r--framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/ui/views/RosterView.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/ui/views/RosterView.java b/framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/ui/views/RosterView.java
index 33431ad3d..3d01a8773 100644
--- a/framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/ui/views/RosterView.java
+++ b/framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/ui/views/RosterView.java
@@ -400,6 +400,9 @@ public class RosterView extends ViewPart implements ILocalUserSettable,
public void run() {
TreeObject treeObject = getSelectedTreeObject();
if (treeObject != null) openChatWindowForTarget(treeObject.getUserID());
+ else {
+
+ }
}
};
chatAction.setText("IM");

Back to the top