From cd0daf51edd2805cdaef032ab5e96553fb672165 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Wed, 06 Jan 2010 22:39:35 +0000
Subject: [PATCH] Fix for issue 4417 (control panel manage tasks not showing tasks log message) Display the log messages of the selected task. Improve how the panel handle the modification in the contents of the task and when the user modifies the displayed attributes in the table. Before this changes the selection of the table was always lost, with this changes the previously selected task(s) are still selected. Improve some labeling in the 'View' menu.
---
opends/src/guitools/org/opends/guitools/controlpanel/util/Utilities.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opends/src/guitools/org/opends/guitools/controlpanel/util/Utilities.java b/opends/src/guitools/org/opends/guitools/controlpanel/util/Utilities.java
index e8840e5..189a8c4 100644
--- a/opends/src/guitools/org/opends/guitools/controlpanel/util/Utilities.java
+++ b/opends/src/guitools/org/opends/guitools/controlpanel/util/Utilities.java
@@ -49,7 +49,7 @@
import java.util.Collection;
import java.util.Date;
import java.util.Iterator;
-import java.util.Set;
+import java.util.List;
import javax.naming.CompositeName;
import javax.naming.InvalidNameException;
@@ -2496,7 +2496,7 @@
Object o = null;
if (sr != null)
{
- Set<Object> values = sr.getAttributeValues(attrName);
+ List<Object> values = sr.getAttributeValues(attrName);
if ((values != null) && (values.size() > 0))
{
o = values.iterator().next();
--
Gitblit v1.10.0