summaryrefslogtreecommitdiff
path: root/sc/source/core/inc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2012-02-06 21:22:29 -0500
committerKohei Yoshida <kohei.yoshida@suse.com>2012-02-06 21:23:23 -0500
commit9ccaa4b1468527bbec12d7e0fccf4ea443478f50 (patch)
treea37b33a47e32b402f8c54ff1b1ffedc409674844 /sc/source/core/inc
parent2bf1a98da8a5bf0e8a0f28c0f2d8846dc17970d4 (diff)
FuncCollection no longer a child of ScSortedCollection.
Diffstat (limited to 'sc/source/core/inc')
-rw-r--r--sc/source/core/inc/adiasync.hxx13
1 files changed, 6 insertions, 7 deletions
diff --git a/sc/source/core/inc/adiasync.hxx b/sc/source/core/inc/adiasync.hxx
index 4d47d3d5cf09..cfb3c214266b 100644
--- a/sc/source/core/inc/adiasync.hxx
+++ b/sc/source/core/inc/adiasync.hxx
@@ -59,16 +59,15 @@ private:
String* pStr;
};
ScAddInDocs* pDocs; // Liste der benutzenden Dokumente
- FuncData* pFuncData; // Zeiger auf die Daten in der Collection
+ FuncData* mpFuncData; // Zeiger auf die Daten in der Collection
sal_uLong nHandle; // wird von double auf sal_uLong gecasted
- ParamType eType; // PTR_DOUBLE oder PTR_STRING Ergebnis
+ ParamType meType; // PTR_DOUBLE oder PTR_STRING Ergebnis
sal_Bool bValid; // ob Wert gueltig
public:
- // cTor nur wenn ScAddInAsync::Get fehlschlaegt!
- // nIndex: Index aus der FunctionCollection
- ScAddInAsync( sal_uLong nHandle, sal_uInt16 nIndex,
- ScDocument* pDoc );
+ // cTor nur wenn ScAddInAsync::Get fehlschlaegt!
+ // nIndex: Index aus der FunctionCollection
+ ScAddInAsync(sal_uLong nHandle, FuncData* pFuncData, ScDocument* pDoc);
// default-cTor nur fuer das eine globale aSeekObj !!!
ScAddInAsync();
virtual ~ScAddInAsync();
@@ -76,7 +75,7 @@ public:
static void CallBack( sal_uLong nHandle, void* pData );
static void RemoveDocument( ScDocument* pDocument );
sal_Bool IsValid() const { return bValid; }
- ParamType GetType() const { return eType; }
+ ParamType GetType() const { return meType; }
double GetValue() const { return nVal; }
const String& GetString() const { return *pStr; }
sal_Bool HasDocument( ScDocument* pDoc ) const