summaryrefslogtreecommitdiff
path: root/svx/source/fmcomp
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
commite8f8f24c8415898c787bbfb629247ed62e73a2b9 (patch)
treedae18a3acbf29c192118e7c003f80df8da8e21ae /svx/source/fmcomp
parent1c8402465cfd4df862409dc310f5f099d044c4d8 (diff)
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'svx/source/fmcomp')
-rw-r--r--svx/source/fmcomp/fmgridcl.cxx2
-rw-r--r--svx/source/fmcomp/fmgridif.cxx2
-rw-r--r--svx/source/fmcomp/gridcell.cxx26
-rw-r--r--svx/source/fmcomp/gridctrl.cxx18
4 files changed, 24 insertions, 24 deletions
diff --git a/svx/source/fmcomp/fmgridcl.cxx b/svx/source/fmcomp/fmgridcl.cxx
index ba7d7a236293..25f3511d58d8 100644
--- a/svx/source/fmcomp/fmgridcl.cxx
+++ b/svx/source/fmcomp/fmgridcl.cxx
@@ -974,7 +974,7 @@ void FmGridHeader::triggerColumnContextMenu( const ::Point& _rPreferredPos )
// let derivees modify the menu
PreExecuteColumnContextMenu( nColId, aContextMenu );
- aContextMenu.RemoveDisabledEntries( sal_True, sal_True );
+ aContextMenu.RemoveDisabledEntries( true, true );
// execute the menu
sal_uInt16 nResult = aContextMenu.Execute( this, _rPreferredPos );
diff --git a/svx/source/fmcomp/fmgridif.cxx b/svx/source/fmcomp/fmgridif.cxx
index 009a83067afe..f0404f09d287 100644
--- a/svx/source/fmcomp/fmgridif.cxx
+++ b/svx/source/fmcomp/fmgridif.cxx
@@ -2090,7 +2090,7 @@ Reference< XAccessibleContext > FmXGridPeer::CreateAccessibleContext()
Window* pGrid = GetWindow();
if ( pGrid )
{
- Reference< XAccessible > xAcc( pGrid->GetAccessible( sal_True ) );
+ Reference< XAccessible > xAcc( pGrid->GetAccessible( true ) );
if ( xAcc.is() )
xContext = xAcc->getAccessibleContext();
// TODO: this has a slight conceptual problem:
diff --git a/svx/source/fmcomp/gridcell.cxx b/svx/source/fmcomp/gridcell.cxx
index 28d2509e608d..12448a00f118 100644
--- a/svx/source/fmcomp/gridcell.cxx
+++ b/svx/source/fmcomp/gridcell.cxx
@@ -972,7 +972,7 @@ void DbCellControl::PaintCell( OutputDevice& _rDev, const Rectangle& _rRect )
{
if ( m_pPainter->GetParent() == &_rDev )
{
- m_pPainter->SetPaintTransparent( sal_True );
+ m_pPainter->SetPaintTransparent( true );
m_pPainter->SetBackground( );
m_pPainter->SetControlBackground( _rDev.GetFillColor() );
m_pPainter->SetControlForeground( _rDev.GetTextColor() );
@@ -980,15 +980,15 @@ void DbCellControl::PaintCell( OutputDevice& _rDev, const Rectangle& _rRect )
m_pPainter->SetTextFillColor( _rDev.GetTextColor() );
Font aFont( _rDev.GetFont() );
- aFont.SetTransparent( sal_True );
+ aFont.SetTransparent( true );
m_pPainter->SetFont( aFont );
m_pPainter->SetPosSizePixel( _rRect.TopLeft(), _rRect.GetSize() );
m_pPainter->Show();
m_pPainter->Update();
- m_pPainter->SetParentUpdateMode( sal_False );
+ m_pPainter->SetParentUpdateMode( false );
m_pPainter->Hide();
- m_pPainter->SetParentUpdateMode( sal_True );
+ m_pPainter->SetParentUpdateMode( true );
}
else
m_pPainter->Draw( &_rDev, _rRect.TopLeft(), _rRect.GetSize(), 0 );
@@ -1670,8 +1670,8 @@ void DbCheckBox::Init( Window& rParent, const Reference< XRowSet >& xCursor )
m_pWindow = new CheckBoxControl( &rParent );
m_pPainter = new CheckBoxControl( &rParent );
- m_pWindow->SetPaintTransparent( sal_True );
- m_pPainter->SetPaintTransparent( sal_True );
+ m_pWindow->SetPaintTransparent( true );
+ m_pPainter->SetPaintTransparent( true );
m_pPainter->SetBackground();
@@ -2267,13 +2267,13 @@ void DbDateField::implAdjustGenericFieldSetting( const Reference< XPropertySet >
static_cast< DateField* >( m_pWindow )->SetMin( aMin );
static_cast< DateField* >( m_pWindow )->SetMax( aMax );
static_cast< DateField* >( m_pWindow )->SetStrictFormat( bStrict );
- static_cast< DateField* >( m_pWindow )->EnableEmptyFieldValue( sal_True );
+ static_cast< DateField* >( m_pWindow )->EnableEmptyFieldValue( true );
static_cast< DateField* >( m_pPainter )->SetExtDateFormat( (ExtDateFieldFormat)nFormat );
static_cast< DateField* >( m_pPainter )->SetMin( aMin );
static_cast< DateField* >( m_pPainter )->SetMax( aMax );
static_cast< DateField* >( m_pPainter )->SetStrictFormat( bStrict );
- static_cast< DateField* >( m_pPainter )->EnableEmptyFieldValue( sal_True );
+ static_cast< DateField* >( m_pPainter )->EnableEmptyFieldValue( true );
}
}
@@ -2379,13 +2379,13 @@ void DbTimeField::implAdjustGenericFieldSetting( const Reference< XPropertySet >
static_cast< TimeField* >( m_pWindow )->SetMin( aMin );
static_cast< TimeField* >( m_pWindow )->SetMax( aMax );
static_cast< TimeField* >( m_pWindow )->SetStrictFormat( bStrict );
- static_cast< TimeField* >( m_pWindow )->EnableEmptyFieldValue( sal_True );
+ static_cast< TimeField* >( m_pWindow )->EnableEmptyFieldValue( true );
static_cast< TimeField* >( m_pPainter )->SetExtFormat( (ExtTimeFieldFormat)nFormat );
static_cast< TimeField* >( m_pPainter )->SetMin( aMin );
static_cast< TimeField* >( m_pPainter )->SetMax( aMax );
static_cast< TimeField* >( m_pPainter )->SetStrictFormat( bStrict );
- static_cast< TimeField* >( m_pPainter )->EnableEmptyFieldValue( sal_True );
+ static_cast< TimeField* >( m_pPainter )->EnableEmptyFieldValue( true );
}
}
@@ -2817,11 +2817,11 @@ void DbFilterField::CreateControl(Window* pParent, const Reference< ::com::sun::
{
case ::com::sun::star::form::FormComponentType::CHECKBOX:
m_pWindow = new CheckBoxControl(pParent);
- m_pWindow->SetPaintTransparent( sal_True );
+ m_pWindow->SetPaintTransparent( true );
((CheckBoxControl*)m_pWindow)->SetClickHdl( LINK( this, DbFilterField, OnClick ) );
m_pPainter = new CheckBoxControl(pParent);
- m_pPainter->SetPaintTransparent( sal_True );
+ m_pPainter->SetPaintTransparent( true );
m_pPainter->SetBackground();
break;
case ::com::sun::star::form::FormComponentType::LISTBOX:
@@ -3041,7 +3041,7 @@ void DbFilterField::SetText(const OUString& rText)
{
Sequence<sal_Int16> aPosSeq = ::comphelper::findValue(m_aValueList, m_aText, true);
if (aPosSeq.getLength())
- static_cast<ListBox*>(m_pWindow)->SelectEntryPos(aPosSeq.getConstArray()[0], sal_True);
+ static_cast<ListBox*>(m_pWindow)->SelectEntryPos(aPosSeq.getConstArray()[0], true);
else
static_cast<ListBox*>(m_pWindow)->SetNoSelection();
} break;
diff --git a/svx/source/fmcomp/gridctrl.cxx b/svx/source/fmcomp/gridctrl.cxx
index 29abc1bea421..761426ecba81 100644
--- a/svx/source/fmcomp/gridctrl.cxx
+++ b/svx/source/fmcomp/gridctrl.cxx
@@ -290,7 +290,7 @@ DbGridControl::NavigationBar::AbsolutePos::AbsolutePos(Window* pParent, WinBits
SetSpinSize(1);
SetDecimalDigits(0);
- SetStrictFormat(sal_True);
+ SetStrictFormat(true);
}
void DbGridControl::NavigationBar::AbsolutePos::KeyInput(const KeyEvent& rEvt)
@@ -432,7 +432,7 @@ sal_uInt16 DbGridControl::NavigationBar::ArrangeControls()
aApplFont.SetSize( pointAbsoluteSize );
m_aAbsolute.SetControlFont( aApplFont );
- aApplFont.SetTransparent( sal_True );
+ aApplFont.SetTransparent( true );
m_aRecordText.SetControlFont( aApplFont );
m_aRecordOf.SetControlFont( aApplFont );
m_aRecordCount.SetControlFont( aApplFont );
@@ -603,7 +603,7 @@ sal_Bool DbGridControl::NavigationBar::GetState(sal_uInt16 nWhich) const
void DbGridControl::NavigationBar::SetState(sal_uInt16 nWhich)
{
- sal_Bool bAvailable = GetState(nWhich);
+ bool bAvailable = GetState(nWhich);
DbGridControl* pParent = (DbGridControl*)GetParent();
Window* pWnd = NULL;
switch (nWhich)
@@ -924,7 +924,7 @@ void DbGridControl::InsertHandleColumn()
void DbGridControl::Init()
{
BrowserHeader* pNewHeader = CreateHeaderBar(this);
- pHeader->SetMouseTransparent(sal_False);
+ pHeader->SetMouseTransparent(false);
SetHeaderBar(pNewHeader);
SetMode(m_nMode);
@@ -1792,7 +1792,7 @@ void DbGridControl::RecalcRows(long nNewTopRow, sal_uInt16 nLinesOnScreen, sal_B
// ignore any implicitly made updates
bool bDisablePaint = !bUpdateCursor && IsPaintEnabled();
if (bDisablePaint)
- EnablePaint(sal_False);
+ EnablePaint(false);
// adjust cache to the visible area
Reference< XPropertySet > xSet = m_pSeekCursor->getPropertySet();
@@ -1833,7 +1833,7 @@ void DbGridControl::RecalcRows(long nNewTopRow, sal_uInt16 nLinesOnScreen, sal_B
AdjustRows();
// ignore any updates implicit made
- EnablePaint(sal_True);
+ EnablePaint(true);
}
void DbGridControl::RowInserted(long nRow, long nNumRows, sal_Bool bDoPaint, sal_Bool bKeepSelection)
@@ -2763,7 +2763,7 @@ void DbGridControl::executeRowContextMenu( long _nRow, const Point& _rPreferredP
PopupMenu aContextMenu( SVX_RES( RID_SVXMNU_ROWS ) );
PreExecuteRowContextMenu( (sal_uInt16)_nRow, aContextMenu );
- aContextMenu.RemoveDisabledEntries( sal_True, sal_True );
+ aContextMenu.RemoveDisabledEntries( true, true );
PostExecuteRowContextMenu( (sal_uInt16)_nRow, aContextMenu, aContextMenu.Execute( this, _rPreferredPos ) );
// TODO: why this weird cast to sal_uInt16? What if we really have more than 65535 lines?
@@ -2806,7 +2806,7 @@ void DbGridControl::Command(const CommandEvent& rEvt)
else if (canCopyCellText(nRow, nColId))
{
PopupMenu aContextMenu(SVX_RES(RID_SVXMNU_CELL));
- aContextMenu.RemoveDisabledEntries(sal_True, sal_True);
+ aContextMenu.RemoveDisabledEntries(true, true);
switch (aContextMenu.Execute(this, rEvt.GetMousePosPixel()))
{
case SID_COPY:
@@ -3220,7 +3220,7 @@ bool DbGridControl::PreNotify(NotifyEvent& rEvt)
// Ctrl-Tab is used to step out of the control, without traveling to the
// remaining cells first
// -> build a new key event without the Ctrl-key, and let the very base class handle it
- KeyCode aNewCode( KEY_TAB, bShift, sal_False, sal_False, sal_False );
+ KeyCode aNewCode( KEY_TAB, bShift, false, false, false );
KeyEvent aNewEvent( pKeyEvent->GetCharCode(), aNewCode );
// call the Control - our direct base class will interpret this in a way we do not want (and do