summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2006-12-01 15:49:44 +0000
committerRüdiger Timm <rt@openoffice.org>2006-12-01 15:49:44 +0000
commit66c1362075d47f88a213b59d8c07c3a971d994e8 (patch)
tree793a6477886b4282525222f6c3be870a7d904c48 /wizards
parent09250996754ff7b8bd91d771ade60df46c0e843a (diff)
INTEGRATION: CWS dbwizardpp5 (1.9.28); FILE MERGED
2006/10/06 16:35:28 bc 1.9.28.1: #i43801#reportwizard now handles NumberFormat correctly
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/ui/FieldSelection.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/wizards/com/sun/star/wizards/ui/FieldSelection.java b/wizards/com/sun/star/wizards/ui/FieldSelection.java
index 275e398324e0..8658019e84e7 100644
--- a/wizards/com/sun/star/wizards/ui/FieldSelection.java
+++ b/wizards/com/sun/star/wizards/ui/FieldSelection.java
@@ -4,9 +4,9 @@
*
* $RCSfile: FieldSelection.java,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: kz $ $Date: 2006-07-06 14:32:10 $
+ * last change: $Author: rt $ $Date: 2006-12-01 16:49:43 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -329,7 +329,7 @@ public class FieldSelection {
// Enable or disable the buttons used for moving the available
// fields between the two list boxes.
- private void toggleListboxButtons(short iFieldsSelIndex, short iSelFieldsSelIndex) {
+ protected void toggleListboxButtons(short iFieldsSelIndex, short iSelFieldsSelIndex) {
try {
boolean bmoveUpenabled = false;
boolean bmoveDownenabled = false;
@@ -357,7 +357,7 @@ public class FieldSelection {
}
- private void toggleMoveButtons(boolean _btoggleMoveAll, boolean _btoggleMoveSelected) {
+ protected void toggleMoveButtons(boolean _btoggleMoveAll, boolean _btoggleMoveSelected) {
boolean btoggleMoveAll = (((xFieldsListBox.getItemCount() + xSelFieldsListBox.getItemCount()) < maxfieldcount) && (_btoggleMoveAll));
boolean btoggleMoveSelected = (((xFieldsListBox.getSelectedItems().length + xSelFieldsListBox.getItemCount()) < maxfieldcount) && (_btoggleMoveSelected));
CurUnoDialog.setControlProperty("cmdMoveAll" + sIncSuffix, "Enabled", new Boolean(btoggleMoveAll));