diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-15 09:30:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-15 15:23:28 +0200 |
commit | 23dc4e1a0080b70a3dc860c1e1a414e5442c8837 (patch) | |
tree | 011b014e3eb8dac46a5ea9f4f4e237c51e9a6fa1 /basctl | |
parent | 16691e09ee4e57c9ee9e8988f271f6c0dbe96b6b (diff) |
basctl: sal_Bool->bool
Change-Id: I85e1e94557a238f629151d9ce46a502efed3696d
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/moduldlg.cxx | 2 | ||||
-rw-r--r-- | basctl/source/basicide/moduldlg.hxx | 2 | ||||
-rw-r--r-- | basctl/source/dlged/dlgedclip.cxx | 2 | ||||
-rw-r--r-- | basctl/source/inc/dlgedclip.hxx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/basctl/source/basicide/moduldlg.cxx b/basctl/source/basicide/moduldlg.cxx index ff1f06b66468..35f631659f23 100644 --- a/basctl/source/basicide/moduldlg.cxx +++ b/basctl/source/basicide/moduldlg.cxx @@ -318,7 +318,7 @@ void Shell::CopyDialogResources( } TriState ExtTreeListBox::NotifyCopyingMoving( SvTreeListEntry* pTarget, SvTreeListEntry* pEntry, - SvTreeListEntry*& rpNewParent, sal_uLong& rNewChildPos, sal_Bool bMove ) + SvTreeListEntry*& rpNewParent, sal_uLong& rNewChildPos, bool bMove ) { (void)pEntry; DBG_ASSERT( pEntry, "Kein Eintrag?" ); // ASS is ok here, should not be reached diff --git a/basctl/source/basicide/moduldlg.hxx b/basctl/source/basicide/moduldlg.hxx index d01c940869c8..64aa1f474ed7 100644 --- a/basctl/source/basicide/moduldlg.hxx +++ b/basctl/source/basicide/moduldlg.hxx @@ -108,7 +108,7 @@ protected: virtual TriState NotifyCopying( SvTreeListEntry* pTarget, SvTreeListEntry* pEntry, SvTreeListEntry*& rpNewParent, sal_uLong& rNewChildPos ) SAL_OVERRIDE; TriState NotifyCopyingMoving( SvTreeListEntry* pTarget, SvTreeListEntry* pEntry, - SvTreeListEntry*& rpNewParent, sal_uLong& rNewChildPos, sal_Bool bMove ); + SvTreeListEntry*& rpNewParent, sal_uLong& rNewChildPos, bool bMove ); public: ExtTreeListBox(Window* pParent, WinBits nStyle); diff --git a/basctl/source/dlged/dlgedclip.cxx b/basctl/source/dlged/dlgedclip.cxx index 892dcde61643..9d042c64049d 100644 --- a/basctl/source/dlged/dlgedclip.cxx +++ b/basctl/source/dlged/dlgedclip.cxx @@ -41,7 +41,7 @@ DlgEdTransferableImpl::DlgEdTransferableImpl( const Sequence< DataFlavor >& aSeq DlgEdTransferableImpl::~DlgEdTransferableImpl() { } -sal_Bool DlgEdTransferableImpl::compareDataFlavors( const DataFlavor& lFlavor, const DataFlavor& rFlavor ) +bool DlgEdTransferableImpl::compareDataFlavors( const DataFlavor& lFlavor, const DataFlavor& rFlavor ) { // compare mime content types Reference< uno::XComponentContext > xContext = getProcessComponentContext(); diff --git a/basctl/source/inc/dlgedclip.hxx b/basctl/source/inc/dlgedclip.hxx index 6c574b9ac8d8..9fea8dfe6ed8 100644 --- a/basctl/source/inc/dlgedclip.hxx +++ b/basctl/source/inc/dlgedclip.hxx @@ -39,7 +39,7 @@ private: ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > m_SeqData; protected: - virtual sal_Bool compareDataFlavors( const ::com::sun::star::datatransfer::DataFlavor& lFlavor, const ::com::sun::star::datatransfer::DataFlavor& rFlavor ); + virtual bool compareDataFlavors( const ::com::sun::star::datatransfer::DataFlavor& lFlavor, const ::com::sun::star::datatransfer::DataFlavor& rFlavor ); public: DlgEdTransferableImpl( const ::com::sun::star::uno::Sequence< ::com::sun::star::datatransfer::DataFlavor >& aSeqFlavors, const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aSeqData ); |