summaryrefslogtreecommitdiffstats
path: root/sc/source/ui/inc/sizedev.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/inc/sizedev.hxx')
-rw-r--r--sc/source/ui/inc/sizedev.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/inc/sizedev.hxx b/sc/source/ui/inc/sizedev.hxx
index 615755be0240..2221396c97e2 100644
--- a/sc/source/ui/inc/sizedev.hxx
+++ b/sc/source/ui/inc/sizedev.hxx
@@ -36,7 +36,7 @@ class ScDocShell;
class ScSizeDeviceProvider
{
OutputDevice* pDevice;
- BOOL bOwner;
+ sal_Bool bOwner;
double nPPTX;
double nPPTY;
MapMode aOldMapMode;
@@ -48,7 +48,7 @@ public:
OutputDevice* GetDevice() const { return pDevice; }
double GetPPTX() const { return nPPTX; }
double GetPPTY() const { return nPPTY; }
- BOOL IsPrinter() const { return !bOwner; }
+ sal_Bool IsPrinter() const { return !bOwner; }
};
#endif