diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-10-08 21:46:56 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-10-11 12:14:24 -0400 |
commit | a11e224e07a4fda0de64a9a0a181f6034e08d2e5 (patch) | |
tree | 1e229479db380a253e6f35fc937a0b09b53da830 /sc/inc/queryentry.hxx | |
parent | 516ecd072f9dbfbacce77127a02b666ce387982d (diff) |
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.hxx | 3 |
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) {} |