diff options
author | Jan Holesovsky <kendy@suse.cz> | 2011-11-20 15:12:50 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2011-11-20 15:15:26 +0100 |
commit | 840e2f3ef5b73807403084edf09b5e53a097dcb3 (patch) | |
tree | 8fb4c300c0a7fe781d66b16db3bd35925459ecce /sc/inc/queryentry.hxx | |
parent | a84651f39d4afe662181f695a1a15c4dfe96e7e6 (diff) |
Inline ScQueryEntry::Item::Item() to fix Windows build.
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 835c84ad3ae4..5c887309f7ae 100644 --- a/sc/inc/queryentry.hxx +++ b/sc/inc/queryentry.hxx @@ -52,7 +52,8 @@ struct SC_DLLPUBLIC ScQueryEntry double mfVal; rtl::OUString maString; - Item(); + Item() : meType(ByValue), mfVal(0.0) {} + bool operator== (const Item& r) const; }; typedef std::vector<Item> QueryItemsType; |