diff options
author | Andras Timar <andras.timar@collabora.com> | 2015-03-20 22:32:53 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2015-03-20 22:35:45 +0100 |
commit | 45c949c5a34cb73cdb08f85b2f33ae498c7c3c5c (patch) | |
tree | 9f8b14ace2ea4dbe686c1113259434097c886fa6 /sc/source/ui | |
parent | 4c251ddd72af765dd9e665150176c2d931322b9c (diff) |
Replace hardcoded UI string with string from .res file
Change-Id: Iba362cc2ee624271dcc078d7e7ded1ef6ff44ae4
Diffstat (limited to 'sc/source/ui')
-rw-r--r-- | sc/source/ui/StatisticsDialogs/AnalysisOfVarianceDialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/StatisticsDialogs/AnalysisOfVarianceDialog.cxx b/sc/source/ui/StatisticsDialogs/AnalysisOfVarianceDialog.cxx index 03a71ad43dd2..89e2fa4cdc15 100644 --- a/sc/source/ui/StatisticsDialogs/AnalysisOfVarianceDialog.cxx +++ b/sc/source/ui/StatisticsDialogs/AnalysisOfVarianceDialog.cxx @@ -190,7 +190,7 @@ void ScAnalysisOfVarianceDialog::AnovaSingleFactor(AddressWalkerWriter& output, output.newLine(); double aAlphaValue = mpAlphaField->GetValue() / 100.0; - output.writeString("Alpha"); + output.writeString(SC_STRLOAD(RID_STATISTICS_DLGS, STR_LABEL_ALPHA)); output.nextColumn(); output.writeValue(aAlphaValue); aTemplate.autoReplaceAddress("%ALPHA%", output.current()); |