summaryrefslogtreecommitdiff
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:49 +0000
commit4b9efcace019adbe0d09930e4bf11fab79057356 (patch)
tree8d9345849ba7b423de1e4c1b127bebe4f422c1ad
parenta2b58dc798bf3cca9a24b7c41a616dc7c3d75f3e (diff)
Replace hardcoded UI string with string from .res file
Change-Id: Iba362cc2ee624271dcc078d7e7ded1ef6ff44ae4 (cherry picked from commit 45c949c5a34cb73cdb08f85b2f33ae498c7c3c5c) Reviewed-on: https://gerrit.libreoffice.org/14934 Tested-by: David Tardon <dtardon@redhat.com> Reviewed-by: David Tardon <dtardon@redhat.com>
-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 a764c1397321..846f4f77dff3 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());