diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2009-09-16 16:18:38 -0400 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2009-09-16 16:18:38 -0400 |
commit | fe232c3a08c5e3c11d54ca1831bd28b87c500ab6 (patch) | |
tree | 4e7cfb5d74e14c565498f0754657f6a8e3d62b15 /sc/inc/queryparam.hxx | |
parent | 612a93a510ebc05c3f245229819a34600d2acde0 (diff) |
removed the duplicated ScTable::ValidQuery.
Diffstat (limited to 'sc/inc/queryparam.hxx')
-rw-r--r-- | sc/inc/queryparam.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sc/inc/queryparam.hxx b/sc/inc/queryparam.hxx index 154c2f05fa82..ec8e22c49171 100644 --- a/sc/inc/queryparam.hxx +++ b/sc/inc/queryparam.hxx @@ -34,6 +34,8 @@ #include "global.hxx" #include "scmatrix.hxx" +struct ScDBQueryParamInternal; + struct ScQueryParamBase { bool bHasHeader; @@ -86,11 +88,13 @@ struct SC_DLLPUBLIC ScQueryParam : public ScQueryParamBase, public ScQueryParamT ScQueryParam(); ScQueryParam( const ScQueryParam& r ); + ScQueryParam( const ScDBQueryParamInternal& r ); virtual ~ScQueryParam(); ScQueryParam& operator= ( const ScQueryParam& r ); BOOL operator== ( const ScQueryParam& rOther ) const; - void Clear (); + void Clear(); + void ClearDestParams(); void MoveToDest(); }; |