summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2015-03-20 22:32:53 +0100
committerDavid Tardon <dtardon@redhat.com>2015-03-21 06:30:16 +0000
commitdcc6ea7385cd358cee7a6718a117c128f0a7e66a (patch)
treeaa4249f1f140f8a44e58763430fbbf8f72e7b100 /sc
parent53fd20770d7f425ca99e807bb4b45eafa9b47aad (diff)
Replace hardcoded UI string with string from .res file
Change-Id: Iba362cc2ee624271dcc078d7e7ded1ef6ff44ae4 Reviewed-on: https://gerrit.libreoffice.org/14933 Tested-by: David Tardon <dtardon@redhat.com> Reviewed-by: David Tardon <dtardon@redhat.com>
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());