diff options
| author | Robert Gemmell <robbie@apache.org> | 2009-11-11 14:15:58 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2009-11-11 14:15:58 +0000 |
| commit | e6bd568f3fbd1f20df7044ac0f4a022f957a3637 (patch) | |
| tree | e74b240112b41b4b299f46587e43b2fe6af3b0b5 /qpid/java/management/eclipse-plugin | |
| parent | bc2e9c9883b2aa322c0724e176af89bee7625983 (diff) | |
| download | qpid-python-e6bd568f3fbd1f20df7044ac0f4a022f957a3637.tar.gz | |
QPID-2193: add a warning note to the confirmation dialog
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@834892 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/management/eclipse-plugin')
| -rw-r--r-- | qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/queue/QueueOperationsTabControl.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/queue/QueueOperationsTabControl.java b/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/queue/QueueOperationsTabControl.java index 8e0dc7d981..309b84f52b 100644 --- a/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/queue/QueueOperationsTabControl.java +++ b/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/queue/QueueOperationsTabControl.java @@ -392,7 +392,9 @@ public class QueueOperationsTabControl extends TabControl public void widgetSelected(SelectionEvent se) { int response = ViewUtility.popupOkCancelConfirmationMessage("Delete 1st unacquired message", - "Delete 1st unacquired message on the queue?"); + "Delete 1st unacquired message on the queue?\n\n" + + "NOTE: Any ongoing consumer activity may mean this is " + + "not the first message listed in the table."); if (response == SWT.OK) { try |
