summaryrefslogtreecommitdiffstats
path: root/sc/inc/queryentry.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2013-10-04 15:21:36 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2013-10-04 19:15:25 -0400
commit200b4539677b51cb7161a5dd4697778dbfc693e3 (patch)
treea80201dcdb516a4cb66c5ee54d536b3e59156d8d /sc/inc/queryentry.hxx
parentScInterpreter::GetString() now returns a ref to OUString. (diff)
downloadcore-200b4539677b51cb7161a5dd4697778dbfc693e3.tar.gz
core-200b4539677b51cb7161a5dd4697778dbfc693e3.zip
Some attempt to store string ID's into query items.
Change-Id: I8db7cd327728be0974405eabb0fd58156ba231d6
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..636372e0a21f 100644
--- a/sc/inc/queryentry.hxx
+++ b/sc/inc/queryentry.hxx
@@ -42,8 +42,9 @@ struct SC_DLLPUBLIC ScQueryEntry
QueryType meType;
double mfVal;
OUString maString;
+ sal_uIntPtr mnStrId;
- Item() : meType(ByValue), mfVal(0.0) {}
+ Item() : meType(ByValue), mfVal(0.0), mnStrId(0) {}
bool operator== (const Item& r) const;
};