summaryrefslogtreecommitdiff
path: root/include/svx/sdrpaintwindow.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-06 14:38:36 +0200
committerNoel Grandin <noel@peralex.com>2014-03-11 08:18:24 +0200
commitd1bffe3596d21f205cb7a2697bb5142f190b5627 (patch)
treed0e8e310bb9574fac992118739019c8c30c5b185 /include/svx/sdrpaintwindow.hxx
parent53c91a6db1cdaf3a91fba6ea328acdcc33c4088a (diff)
svx: sal_Bool->bool
Change-Id: I64d9c1bbe6ed85108783bf6a97329fcdc167ca62
Diffstat (limited to 'include/svx/sdrpaintwindow.hxx')
-rw-r--r--include/svx/sdrpaintwindow.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/sdrpaintwindow.hxx b/include/svx/sdrpaintwindow.hxx
index 27c546063c78..9e507ad1be86 100644
--- a/include/svx/sdrpaintwindow.hxx
+++ b/include/svx/sdrpaintwindow.hxx
@@ -121,10 +121,10 @@ public:
bool OutputToPrinter() const { return (OUTDEV_PRINTER == mrOutputDevice.GetOutDevType()); }
// Is OutDev a window?
- sal_Bool OutputToWindow() const { return (OUTDEV_WINDOW == mrOutputDevice.GetOutDevType()); }
+ bool OutputToWindow() const { return (OUTDEV_WINDOW == mrOutputDevice.GetOutDevType()); }
// Is OutDev a VirtualDevice?
- sal_Bool OutputToVirtualDevice() const { return (OUTDEV_VIRDEV == mrOutputDevice.GetOutDevType()); }
+ bool OutputToVirtualDevice() const { return (OUTDEV_VIRDEV == mrOutputDevice.GetOutDevType()); }
// Is OutDev a recording MetaFile?
bool OutputToRecordingMetaFile() const;