summaryrefslogtreecommitdiffstats
path: root/sc/inc/queryparam.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2009-09-16 16:18:38 -0400
committerKohei Yoshida <kyoshida@novell.com>2009-09-16 16:18:38 -0400
commitfe232c3a08c5e3c11d54ca1831bd28b87c500ab6 (patch)
tree4e7cfb5d74e14c565498f0754657f6a8e3d62b15 /sc/inc/queryparam.hxx
parentcode cleanup. (diff)
downloadcore-fe232c3a08c5e3c11d54ca1831bd28b87c500ab6.tar.gz
core-fe232c3a08c5e3c11d54ca1831bd28b87c500ab6.zip
removed the duplicated ScTable::ValidQuery.
Diffstat (limited to 'sc/inc/queryparam.hxx')
-rw-r--r--sc/inc/queryparam.hxx6
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();
};