summaryrefslogtreecommitdiff
path: root/svtools/source/brwbox/ebbcontrols.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/brwbox/ebbcontrols.cxx')
-rw-r--r--svtools/source/brwbox/ebbcontrols.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/brwbox/ebbcontrols.cxx b/svtools/source/brwbox/ebbcontrols.cxx
index 4b952c35f0d9..c1b865c6a27a 100644
--- a/svtools/source/brwbox/ebbcontrols.cxx
+++ b/svtools/source/brwbox/ebbcontrols.cxx
@@ -129,7 +129,7 @@ namespace svt
bool ComboBoxCellController::IsModified() const
{
- return GetComboBox().GetSavedValue() != GetComboBox().GetText();
+ return GetComboBox().IsValueChangedFromSaved();
}
@@ -225,7 +225,7 @@ namespace svt
bool ListBoxCellController::IsModified() const
{
- return GetListBox().GetSelectEntryPos() != GetListBox().GetSavedValue();
+ return GetListBox().IsValueChangedFromSaved();
}
@@ -353,7 +353,7 @@ namespace svt
bool CheckBoxCellController::IsModified() const
{
- return GetCheckBox().GetSavedValue() != GetCheckBox().GetState();
+ return GetCheckBox().IsValueChangedFromSaved();
}