summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2002-03-04 16:08:54 +0000
committerFrank Schönheit <fs@openoffice.org>2002-03-04 16:08:54 +0000
commit60ed7e358dbc7b3defe587e918370914ad3dc79f (patch)
treee05b70d0ef8180018b7fd0308999ffc8d00dd37d
parent08169489e515bb9c60d21f0c4875f34fcd4e7c65 (diff)
#97921# Up/Down/First/Last: call the base class to ensure that the links/handlers are called
-rw-r--r--svtools/source/control/fmtfield.cxx12
1 files changed, 10 insertions, 2 deletions
diff --git a/svtools/source/control/fmtfield.cxx b/svtools/source/control/fmtfield.cxx
index a296979525b9..116be8c3d627 100644
--- a/svtools/source/control/fmtfield.cxx
+++ b/svtools/source/control/fmtfield.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fmtfield.cxx,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * last change: $Author: rt $ $Date: 2002-01-03 10:48:38 $
+ * last change: $Author: fs $ $Date: 2002-03-04 17:08:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -839,6 +839,8 @@ void FormattedField::Up()
// das setValue handelt Bereichsueberschreitungen (min/max) automatisch
SetModifyFlag();
Modify();
+
+ SpinField::Up();
}
//------------------------------------------------------------------------------
@@ -848,6 +850,8 @@ void FormattedField::Down()
SetValue(GetValue() - m_dSpinSize);
SetModifyFlag();
Modify();
+
+ SpinField::Down();
}
//------------------------------------------------------------------------------
@@ -860,6 +864,8 @@ void FormattedField::First()
SetModifyFlag();
Modify();
}
+
+ SpinField::First();
}
//------------------------------------------------------------------------------
@@ -872,6 +878,8 @@ void FormattedField::Last()
SetModifyFlag();
Modify();
}
+
+ SpinField::Last();
}
//==============================================================================