From 85811b64468e9b7a876bd352a0299b904a53a3fb Mon Sep 17 00:00:00 2001
From: ludovicp <ludovicp@localhost>
Date: Mon, 31 May 2010 12:16:23 +0000
Subject: [PATCH] Fix for Issue #615. Add support for multiple object-class inheritance. Support added in the schema, core server and tools including Control-Panel
---
opends/src/guitools/org/opends/guitools/controlpanel/ui/MonitoringAttributesViewPanel.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opends/src/guitools/org/opends/guitools/controlpanel/ui/MonitoringAttributesViewPanel.java b/opends/src/guitools/org/opends/guitools/controlpanel/ui/MonitoringAttributesViewPanel.java
index e404f17..8442a26 100644
--- a/opends/src/guitools/org/opends/guitools/controlpanel/ui/MonitoringAttributesViewPanel.java
+++ b/opends/src/guitools/org/opends/guitools/controlpanel/ui/MonitoringAttributesViewPanel.java
@@ -67,7 +67,7 @@
private LinkedHashSet<T> monitoringAttributes;
- private boolean isCancelled = true;
+ private boolean isCanceled = true;
// Note: the order of the checkboxes and the elements in the Attributes
// enumeration will be the same.
@@ -293,7 +293,7 @@
{
if (visible)
{
- isCancelled = true;
+ isCanceled = true;
}
}
@@ -321,7 +321,7 @@
}
else
{
- isCancelled = false;
+ isCanceled = false;
super.closeClicked();
}
}
@@ -340,9 +340,9 @@
* @return <CODE>true</CODE> if the user closed the dialog by cancelling it
* and <CODE>false</CODE> otherwise.
*/
- public boolean isCancelled()
+ public boolean isCanceled()
{
- return isCancelled;
+ return isCanceled;
}
/**
--
Gitblit v1.10.0