diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-10-04 15:21:36 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-10-04 19:15:25 -0400 |
commit | 200b4539677b51cb7161a5dd4697778dbfc693e3 (patch) | |
tree | a80201dcdb516a4cb66c5ee54d536b3e59156d8d /sc/inc/queryentry.hxx | |
parent | f54cdb59217cb84033235e18a208c6e27d7fca57 (diff) |
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.hxx | 3 |
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; }; |