summaryrefslogtreecommitdiffstats
path: root/sc/inc/queryentry.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2013-10-08 21:46:56 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2013-10-11 12:14:24 -0400
commita11e224e07a4fda0de64a9a0a181f6034e08d2e5 (patch)
tree1e229479db380a253e6f35fc937a0b09b53da830 /sc/inc/queryentry.hxx
parentRestore persistent userpaint functionality in slideshow. (diff)
downloadcore-a11e224e07a4fda0de64a9a0a181f6034e08d2e5.tar.gz
core-a11e224e07a4fda0de64a9a0a181f6034e08d2e5.zip
Store svl::SharedString in query entry items, and adjust all call sites.
Change-Id: Ifd3bbb84c7abbe983a017a169c7e05914ef33450
Diffstat (limited to 'sc/inc/queryentry.hxx')
-rw-r--r--sc/inc/queryentry.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/inc/queryentry.hxx b/sc/inc/queryentry.hxx
index a3baea6fd5c2..cc35b23cb2bc 100644
--- a/sc/inc/queryentry.hxx
+++ b/sc/inc/queryentry.hxx
@@ -22,6 +22,7 @@
#include "address.hxx"
#include "global.hxx"
+#include "svl/sharedstring.hxx"
#include <vector>
@@ -41,7 +42,7 @@ struct SC_DLLPUBLIC ScQueryEntry
{
QueryType meType;
double mfVal;
- OUString maString;
+ svl::SharedString maString;
Item() : meType(ByValue), mfVal(0.0) {}