summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDag Wieers <dag@wieers.com>2016-03-13 22:09:55 +0100
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2016-03-18 02:43:41 -0600
commitf1ff9375184607b86ae8807d7cf1220962425b51 (patch)
treeed5fd8787f2cb377eb11afd3d7cee9c090aa0476
parentb5ba4a9d099d59cf5bd45b420afb77e0e92d7306 (diff)
Related: tdf#42629 Improve the readability of the status bar functions
Currently there is no spacing between functions in the status bar. Which makes it hard to read. E.g. Average=4.5;Count=8;Max=8;Sum=36 I think spacing and using colons works out better: Average: 4.5; Count: 8; Max: 8; Sum: 36 Change-Id: I866bd06519bf03bbe146eee47128a476aff06ba1
-rw-r--r--sc/source/ui/view/tabvwsha.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/view/tabvwsha.cxx b/sc/source/ui/view/tabvwsha.cxx
index ce8b41cf15b4..9d34f765f7c7 100644
--- a/sc/source/ui/view/tabvwsha.cxx
+++ b/sc/source/ui/view/tabvwsha.cxx
@@ -110,7 +110,7 @@ bool ScTabViewShell::GetFunction( OUString& rFuncStr, sal_uInt16 nErrCode )
SCTAB nTab = rViewData.GetTabNo();
aStr = ScGlobal::GetRscString(nGlobStrId);
- aStr += "=";
+ aStr += ": ";
ScAddress aCursor( nPosX, nPosY, nTab );
double nVal;
@@ -141,7 +141,7 @@ bool ScTabViewShell::GetFunction( OUString& rFuncStr, sal_uInt16 nErrCode )
bFirst = false;
}
else
- rFuncStr += (";" + aStr);
+ rFuncStr += ("; " + aStr);
}
}