summaryrefslogtreecommitdiff
path: root/sw/inc/swbaslnk.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-09-27 07:10:43 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-09-27 07:10:43 +0000
commitf556b33a775c2b233663c809c43bd46fbdee936b (patch)
treecf7642c62dcfde6a06a1ffc1ae3a64f945835d2a /sw/inc/swbaslnk.hxx
parenteb96be218cb6816c61e5eef1528c0c9dac68b9f6 (diff)
INTEGRATION: CWS swwarnings (1.6.242); FILE MERGED
2007/05/29 10:50:47 os 1.6.242.3: RESYNC: (1.6-1.7); FILE MERGED 2007/04/03 12:57:08 tl 1.6.242.2: #i69287# warning-free code 2007/02/22 15:05:38 tl 1.6.242.1: #i69287# warning-free code
Diffstat (limited to 'sw/inc/swbaslnk.hxx')
-rw-r--r--sw/inc/swbaslnk.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/swbaslnk.hxx b/sw/inc/swbaslnk.hxx
index c1e290bb998b..eadecd7142ba 100644
--- a/sw/inc/swbaslnk.hxx
+++ b/sw/inc/swbaslnk.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: swbaslnk.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2007-04-25 08:56:41 $
+ * last change: $Author: hr $ $Date: 2007-09-27 08:10:43 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -84,9 +84,9 @@ public:
SwCntntNode *GetCntntNode() { return pCntntNode; }
// nur fuer Grafiken
- FASTBOOL SwapIn( BOOL bWaitForData = FALSE, BOOL bNativFormat = FALSE );
+ BOOL SwapIn( BOOL bWaitForData = FALSE, BOOL bNativFormat = FALSE );
- FASTBOOL Connect() { return 0 != SvBaseLink::GetRealObject(); }
+ BOOL Connect() { return 0 != SvBaseLink::GetRealObject(); }
// nur fuer Grafik-Links ( zum Umschalten zwischen DDE / Grf-Link)
void SetObjType( USHORT nType ) { SvBaseLink::SetObjType( nType ); }
@@ -96,7 +96,7 @@ public:
xub_StrLen nEnd = STRING_NOTFOUND ) const;
void SetNoDataFlag() { bNoDataFlag = TRUE; }
- BOOL ChkNoDataFlag() { return bNoDataFlag ? !(bNoDataFlag = FALSE) : FALSE; }
+ BOOL ChkNoDataFlag() { BOOL bRet = bNoDataFlag; bNoDataFlag = FALSE; return bRet; }
BOOL IsNoDataFlag() const { return bNoDataFlag; }
};