summaryrefslogtreecommitdiff
path: root/sc/source/core/inc/ddelink.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/inc/ddelink.hxx')
-rw-r--r--sc/source/core/inc/ddelink.hxx40
1 files changed, 20 insertions, 20 deletions
diff --git a/sc/source/core/inc/ddelink.hxx b/sc/source/core/inc/ddelink.hxx
index 89127e4dfba0..48b927607afd 100644
--- a/sc/source/core/inc/ddelink.hxx
+++ b/sc/source/core/inc/ddelink.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -42,18 +42,18 @@ class SvStream;
class ScDdeLink : public ::sfx2::SvBaseLink, public SvtBroadcaster
{
private:
-static BOOL bIsInUpdate;
+static BOOL bIsInUpdate;
- ScDocument* pDoc;
+ ScDocument* pDoc;
- String aAppl; // Verbindungsdaten
- String aTopic;
- String aItem;
- BYTE nMode; // Zahlformat-Modus
+ String aAppl; // Verbindungsdaten
+ String aTopic;
+ String aItem;
+ BYTE nMode; // Zahlformat-Modus
- BOOL bNeedUpdate; // wird gesetzt, wenn Update nicht moeglich war
+ BOOL bNeedUpdate; // wird gesetzt, wenn Update nicht moeglich war
- ScMatrixRef pResult; // Ergebnis
+ ScMatrixRef pResult; // Ergebnis
public:
TYPEINFO();
@@ -65,14 +65,14 @@ public:
ScDdeLink( ScDocument* pD, const ScDdeLink& rOther );
virtual ~ScDdeLink();
- void Store( SvStream& rStream, ScMultipleWriteHeader& rHdr ) const;
+ void Store( SvStream& rStream, ScMultipleWriteHeader& rHdr ) const;
// von SvBaseLink ueberladen:
- virtual void DataChanged( const String& rMimeType,
+ virtual void DataChanged( const String& rMimeType,
const ::com::sun::star::uno::Any & rValue );
// von SvtBroadcaster ueberladen:
- virtual void ListenersGone();
+ virtual void ListenersGone();
// fuer Interpreter:
@@ -82,17 +82,17 @@ public:
// XML and Excel import after NewData()
ScMatrixRef GetModifiableResult() { return pResult; }
- const String& GetAppl() const { return aAppl; }
- const String& GetTopic() const { return aTopic; }
- const String& GetItem() const { return aItem; }
- BYTE GetMode() const { return nMode; }
+ const String& GetAppl() const { return aAppl; }
+ const String& GetTopic() const { return aTopic; }
+ const String& GetItem() const { return aItem; }
+ BYTE GetMode() const { return nMode; }
- void ResetValue(); // Wert zuruecksetzen
- void TryUpdate();
+ void ResetValue(); // Wert zuruecksetzen
+ void TryUpdate();
- BOOL NeedsUpdate() const { return bNeedUpdate; }
+ BOOL NeedsUpdate() const { return bNeedUpdate; }
- static BOOL IsInUpdate() { return bIsInUpdate; }
+ static BOOL IsInUpdate() { return bIsInUpdate; }
};