summaryrefslogtreecommitdiff
path: root/basctl/source/dlged
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-08-01 10:05:20 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-08-01 10:06:16 +0900
commit088915c36ba207591a3d97e94bcf1a395bfa69ed (patch)
tree0c5fd77fddcdbc5b5c593467e24f96a86f2d54cd /basctl/source/dlged
parent8df3fbe5249c3f4a1ea3d5586b5c073d5a756fb0 (diff)
sal_Bool -> bool
Change-Id: I82157e89d04eda35525c5a540504e6a8d18bc86c
Diffstat (limited to 'basctl/source/dlged')
-rw-r--r--basctl/source/dlged/dlgedfunc.cxx6
-rw-r--r--basctl/source/dlged/dlgedobj.cxx8
-rw-r--r--basctl/source/dlged/propbrw.cxx4
3 files changed, 9 insertions, 9 deletions
diff --git a/basctl/source/dlged/dlgedfunc.cxx b/basctl/source/dlged/dlgedfunc.cxx
index 0fd37f4a7866..3221a1ce619c 100644
--- a/basctl/source/dlged/dlgedfunc.cxx
+++ b/basctl/source/dlged/dlgedfunc.cxx
@@ -469,7 +469,7 @@ sal_Bool DlgEdFuncInsert::MouseMove( const MouseEvent& rMEvt )
DlgEdFuncSelect::DlgEdFuncSelect( DlgEditor* pParent_ ) :
DlgEdFunc( pParent_ ),
- bMarkAction(sal_False)
+ bMarkAction(false)
{
}
@@ -529,7 +529,7 @@ sal_Bool DlgEdFuncSelect::MouseButtonDown( const MouseEvent& rMEvt )
{
// select object
pView->BegMarkObj(aMDPos);
- bMarkAction = sal_True;
+ bMarkAction = true;
}
}
}
@@ -572,7 +572,7 @@ sal_Bool DlgEdFuncSelect::MouseButtonUp( const MouseEvent& rMEvt )
}
}
- bMarkAction = sal_False;
+ bMarkAction = false;
pWindow->SetPointer( pView->GetPreferedPointer( aPnt, pWindow, nHitLog ) );
pWindow->ReleaseMouse();
diff --git a/basctl/source/dlged/dlgedobj.cxx b/basctl/source/dlged/dlgedobj.cxx
index 0fb5092208ff..c412f1a0c093 100644
--- a/basctl/source/dlged/dlgedobj.cxx
+++ b/basctl/source/dlged/dlgedobj.cxx
@@ -55,7 +55,7 @@ DBG_NAME(DlgEdObj);
DlgEdObj::DlgEdObj()
:SdrUnoObj(String(), sal_False)
- ,bIsListening(sal_False)
+ ,bIsListening(false)
,pDlgEdForm( NULL )
{
DBG_CTOR(DlgEdObj, NULL);
@@ -66,7 +66,7 @@ DlgEdObj::DlgEdObj()
DlgEdObj::DlgEdObj(const ::rtl::OUString& rModelName,
const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& rxSFac)
:SdrUnoObj(rModelName, rxSFac, sal_False)
- ,bIsListening(sal_False)
+ ,bIsListening(false)
,pDlgEdForm( NULL )
{
DBG_CTOR(DlgEdObj, NULL);
@@ -1129,7 +1129,7 @@ void DlgEdObj::StartListening()
if (!isListening())
{
- bIsListening = sal_True;
+ bIsListening = true;
// XPropertyChangeListener
Reference< XPropertySet > xControlModel( GetUnoControlModel() , UNO_QUERY );
@@ -1167,7 +1167,7 @@ void DlgEdObj::EndListening(sal_Bool bRemoveListener)
if (isListening())
{
- bIsListening = sal_False;
+ bIsListening = false;
if (bRemoveListener)
{
diff --git a/basctl/source/dlged/propbrw.cxx b/basctl/source/dlged/propbrw.cxx
index 2ab5b2e158eb..8a9e550a1b3a 100644
--- a/basctl/source/dlged/propbrw.cxx
+++ b/basctl/source/dlged/propbrw.cxx
@@ -101,7 +101,7 @@ DBG_NAME(PropBrw)
PropBrw::PropBrw( const Reference< XMultiServiceFactory >& _xORB, SfxBindings* _pBindings, PropBrwMgr* _pMgr, Window* _pParent,
const Reference< XModel >& _rxContextDocument )
:SfxFloatingWindow( _pBindings, _pMgr, _pParent, WinBits( WB_STDMODELESS | WB_SIZEABLE | WB_3DLOOK | WB_ROLLABLE ) )
- ,m_bInitialStateChange(sal_True)
+ ,m_bInitialStateChange(true)
,m_xORB(_xORB)
,m_xContextDocument( _rxContextDocument )
,pView( NULL )
@@ -509,7 +509,7 @@ void PropBrw::ImplUpdate( const Reference< XModel >& _rxContextDocument, SdrView
{
if ( m_xBrowserComponentWindow.is() )
m_xBrowserComponentWindow->setFocus();
- m_bInitialStateChange = sal_False;
+ m_bInitialStateChange = false;
}
const SdrMarkList& rMarkList = pView->GetMarkedObjectList();