summaryrefslogtreecommitdiff
path: root/sc/inc/global.hxx
diff options
context:
space:
mode:
authorVladimir Glazunov <vg@openoffice.org>2010-02-12 17:46:41 +0100
committerVladimir Glazunov <vg@openoffice.org>2010-02-12 17:46:41 +0100
commit4ed2a42bf1d412f75371ed890305d4429c11b20d (patch)
tree9bfa23966a1d3a3b7755253d1e0f82444312e69b /sc/inc/global.hxx
parentd17a054c8c441ffb075ef157e4818e8b190038a8 (diff)
parenteff8202ca2f213d18ad360ebd3929e139697f513 (diff)
CWS-TOOLING: integrate CWS kohei03
Diffstat (limited to 'sc/inc/global.hxx')
-rw-r--r--sc/inc/global.hxx41
1 files changed, 0 insertions, 41 deletions
diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx
index c938968ddfef..0c350a065d44 100644
--- a/sc/inc/global.hxx
+++ b/sc/inc/global.hxx
@@ -817,47 +817,6 @@ struct ScQueryEntry
BOOL operator==( const ScQueryEntry& r ) const;
};
-struct SC_DLLPUBLIC ScQueryParam
-{
- SCCOL nCol1;
- SCROW nRow1;
- SCCOL nCol2;
- SCROW nRow2;
- SCTAB nTab;
- BOOL bHasHeader;
- BOOL bByRow;
- BOOL bInplace;
- BOOL bCaseSens;
- BOOL bRegExp;
- BOOL bMixedComparison; // whether numbers are smaller than strings
- BOOL bDuplicate;
- BOOL bDestPers; // nicht gespeichert
- SCTAB nDestTab;
- SCCOL nDestCol;
- SCROW nDestRow;
-
-private:
- SCSIZE nEntryCount;
- ScQueryEntry* pEntries;
-
-public:
- ScQueryParam();
- ScQueryParam( const ScQueryParam& r );
- ~ScQueryParam();
-
- SCSIZE GetEntryCount() const { return nEntryCount; }
- ScQueryEntry& GetEntry(SCSIZE n) const { return pEntries[n]; }
- void Resize(SCSIZE nNew);
-
- ScQueryParam& operator= ( const ScQueryParam& r );
- BOOL operator== ( const ScQueryParam& rOther ) const;
- void Clear ();
- void DeleteQuery( SCSIZE nPos );
-
- void MoveToDest();
- void FillInExcelSyntax(String& aCellStr, SCSIZE nIndex);
-};
-
// -----------------------------------------------------------------------
struct SC_DLLPUBLIC ScSubTotalParam