summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-18 15:46:28 +0200
committerNoel Grandin <noel@peralex.com>2014-02-19 13:05:07 +0200
commit82b5388b9b4b50f8ba4b5487545b49080ed106bc (patch)
tree17382203e9cad4be038f24528a23291dfa43229e /sc
parent3ee9f196a1992646c097e9da86c931ce4aeb58dd (diff)
sal_Bool->bool
Change-Id: I0960e5f8fd3437e3aa2e5c6e13e256270f9fdb20
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/app/transobj.cxx4
-rw-r--r--sc/source/ui/inc/transobj.hxx10
2 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/ui/app/transobj.cxx b/sc/source/ui/app/transobj.cxx
index 8275b59fa24c..82b57310a497 100644
--- a/sc/source/ui/app/transobj.cxx
+++ b/sc/source/ui/app/transobj.cxx
@@ -97,7 +97,7 @@ void ScTransferObj::GetAreaSize( ScDocument* pDoc, SCTAB nTab1, SCTAB nTab2, SCR
}
void ScTransferObj::PaintToDev( OutputDevice* pDev, ScDocument* pDoc, double nPrintFactor,
- const ScRange& rBlock, sal_Bool bMetaFile )
+ const ScRange& rBlock, bool bMetaFile )
{
if (!pDoc)
return;
@@ -737,7 +737,7 @@ void ScTransferObj::InitDocShell(bool bLimitToPageSize)
}
}
-SfxObjectShell* ScTransferObj::SetDrawClipDoc( sal_Bool bAnyOle )
+SfxObjectShell* ScTransferObj::SetDrawClipDoc( bool bAnyOle )
{
// update ScGlobal::pDrawClipDocShellRef
diff --git a/sc/source/ui/inc/transobj.hxx b/sc/source/ui/inc/transobj.hxx
index 9bd0d12afa1d..cf79a933db1c 100644
--- a/sc/source/ui/inc/transobj.hxx
+++ b/sc/source/ui/inc/transobj.hxx
@@ -50,9 +50,9 @@ private:
SCCOL nDragHandleX;
SCROW nDragHandleY;
SCTAB nVisibleTab;
- sal_uInt16 nDragSourceFlags;
- sal_Bool bDragWasInternal;
- sal_Bool bUsedForLink;
+ sal_uInt16 nDragSourceFlags;
+ bool bDragWasInternal;
+ bool bUsedForLink;
bool bHasFiltered; // if has filtered rows
bool bUseInApi; // to recognize clipboard content copied from API
@@ -64,7 +64,7 @@ private:
ScDocument* pDestDoc=0,
SCCOL nSubX=0, SCROW nSubY=0 );
static void PaintToDev( OutputDevice* pDev, ScDocument* pDoc, double nPrintFactor,
- const ScRange& rBlock, sal_Bool bMetaFile );
+ const ScRange& rBlock, bool bMetaFile );
static void GetAreaSize( ScDocument* pDoc, SCTAB nTab1, SCTAB nTab2, SCROW& nRow, SCCOL& nCol );
public:
@@ -101,7 +101,7 @@ public:
static SC_DLLPUBLIC ScTransferObj* GetOwnClipboard( Window* pUIWin );
- static SfxObjectShell* SetDrawClipDoc( sal_Bool bAnyOle ); // update ScGlobal::pDrawClipDocShellRef
+ static SfxObjectShell* SetDrawClipDoc( bool bAnyOle ); // update ScGlobal::pDrawClipDocShellRef
virtual sal_Int64 SAL_CALL getSomething( const com::sun::star::uno::Sequence< sal_Int8 >& rId ) throw( com::sun::star::uno::RuntimeException );
static const com::sun::star::uno::Sequence< sal_Int8 >& getUnoTunnelId();
};