summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-19 12:30:34 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-19 12:47:07 +0100
commit973b47a336b239cc92f1789013d28e5bd55f859f (patch)
tree6481f2803208409896aecf6745239cf07953baab /sw/inc
parent9ad3fc29dd98167c35fcb599da0b4e764ddf04dd (diff)
unotools: sal_Bool -> bool
Change-Id: I8051c0756e0474a5b4f748e0aa15a9922e82ea97
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/fmturl.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/fmturl.hxx b/sw/inc/fmturl.hxx
index c73a05606153..022b18a08190 100644
--- a/sw/inc/fmturl.hxx
+++ b/sw/inc/fmturl.hxx
@@ -36,7 +36,7 @@ class SW_DLLPUBLIC SwFmtURL: public SfxPoolItem
OUString sName; ///< Name of the anchor.
ImageMap *pMap; ///< ClientSide images.
- sal_Bool bIsServerMap; ///< A ServerSideImageMap with the URL.
+ bool bIsServerMap; ///< A ServerSideImageMap with the URL.
SwFmtURL& operator=( const SwFmtURL& );
@@ -65,7 +65,7 @@ public:
OUString GetTargetFrameName()const { return sTargetFrameName; }
OUString GetURL() const { return sURL; }
- sal_Bool IsServerMap() const { return bIsServerMap; }
+ bool IsServerMap() const { return bIsServerMap; }
const ImageMap *GetMap() const { return pMap; }
ImageMap *GetMap() { return pMap; }