diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-07-22 21:29:27 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-07-22 21:29:27 +0200 |
commit | 7a26388f34feeec9568cbdcbad78fd5cd881747c (patch) | |
tree | b5d8d4f217e1852849fffed09e674be1816c1d79 /sc | |
parent | c53e5a7dceb78980960504515881281c8e40bcdf (diff) |
show expression for formula condition in manage cond formats
Change-Id: I04cda5ba5b248ef7938d36b5af6003ac89642e42
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/condformat/condformathelper.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/ui/condformat/condformathelper.cxx b/sc/source/ui/condformat/condformathelper.cxx index dda40a8a1049..1ec8607759dc 100644 --- a/sc/source/ui/condformat/condformathelper.cxx +++ b/sc/source/ui/condformat/condformathelper.cxx @@ -76,6 +76,8 @@ rtl::OUString ScCondFormatHelper::GetExpression(const ScConditionalFormat& rForm if(eMode == SC_COND_DIRECT) { aBuffer.append(getTextForType(FORMULA)); + aBuffer.append(" "); + aBuffer.append(pEntry->GetExpression(rPos, 0)); } else { |