summaryrefslogtreecommitdiff
path: root/include/sfx2/printer.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-17 14:23:36 +0200
committerNoel Grandin <noel@peralex.com>2014-03-18 11:27:38 +0200
commitfb77ab1dc237faec245633f99d727350d9ae295f (patch)
treea59d223b3175ab5d594c7ddb13a4acca3569c242 /include/sfx2/printer.hxx
parentac01de882d368c4d8044361f874edd4b53e33f2b (diff)
sfx2: sal_Bool->bool
Change-Id: Ib2a02c7e05e48657b9745bcccc8f8f626daaef2d
Diffstat (limited to 'include/sfx2/printer.hxx')
-rw-r--r--include/sfx2/printer.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sfx2/printer.hxx b/include/sfx2/printer.hxx
index 73e990efa71a..6994cb58abcf 100644
--- a/include/sfx2/printer.hxx
+++ b/include/sfx2/printer.hxx
@@ -37,7 +37,7 @@ private:
JobSetup aOrigJobSetup;
SfxItemSet* pOptions;
SfxPrinter_Impl* pImpl;
- sal_Bool bKnown;
+ bool bKnown;
SAL_DLLPRIVATE void operator =(SfxPrinter &); // not defined
@@ -66,8 +66,8 @@ public:
const SfxItemSet& GetOptions() const { return *pOptions; }
void SetOptions( const SfxItemSet &rNewOptions );
- sal_Bool IsKnown() const { return bKnown; }
- sal_Bool IsOriginal() const { return bKnown; }
+ bool IsKnown() const { return bKnown; }
+ bool IsOriginal() const { return bKnown; }
};
#endif