summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2015-03-20 22:32:53 +0100
committerAndras Timar <andras.timar@collabora.com>2015-03-20 22:35:45 +0100
commit45c949c5a34cb73cdb08f85b2f33ae498c7c3c5c (patch)
tree9f8b14ace2ea4dbe686c1113259434097c886fa6 /sc
parent4c251ddd72af765dd9e665150176c2d931322b9c (diff)
Replace hardcoded UI string with string from .res file
Change-Id: Iba362cc2ee624271dcc078d7e7ded1ef6ff44ae4
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/StatisticsDialogs/AnalysisOfVarianceDialog.cxx2
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());