Kaydet (Commit) 03d92f1c authored tarafından Stephan Bergmann's avatar Stephan Bergmann

svx: sal_Bool -> bool

Change-Id: I5b9b730d7060ec146ed0f54c7fe7eb0ca09f7d9c
üst e333adb1
......@@ -41,8 +41,8 @@ private:
long nRight;
SvxBoxItem* pBorder;
sal_Bool bResetBackground;
sal_Bool bFrameDirection;
bool bResetBackground;
bool bFrameDirection;
sal_Int32 nFrameDirection;
long nHdLeft;
......
......@@ -46,8 +46,8 @@ SvxPageWindow::SvxPageWindow(Window* pParent)
//UUUU
pBorder(0),
bResetBackground(sal_False),
bFrameDirection(sal_False),
bResetBackground(false),
bFrameDirection(false),
nFrameDirection(0),
nHdLeft(0),
......@@ -169,7 +169,7 @@ void SvxPageWindow::DrawPage(const Point& rOrg, const bool bSecond, const bool b
DrawRect(Rectangle(Point(0,0),winSize));
if(bResetBackground)
bResetBackground = sal_False;
bResetBackground = false;
}
SetLineColor(rFieldTextColor);
// Shadow
......
......@@ -341,7 +341,7 @@ namespace svx
case COMMIT_RECORD:
{
sal_Bool bDummy( sal_False );
sal_Bool bDummy( false );
bSuccess = m_xFormOperations->commitCurrentRecord( bDummy );
}
break;
......
......@@ -64,7 +64,7 @@ SvxFmAbsRecWin::~SvxFmAbsRecWin()
}
void SvxFmAbsRecWin::FirePosition( sal_Bool _bForce )
void SvxFmAbsRecWin::FirePosition( bool _bForce )
{
if ( _bForce || IsValueChangedFromSaved() )
{
......@@ -92,14 +92,14 @@ void SvxFmAbsRecWin::FirePosition( sal_Bool _bForce )
void SvxFmAbsRecWin::LoseFocus()
{
FirePosition( sal_False );
FirePosition( false );
}
void SvxFmAbsRecWin::KeyInput( const KeyEvent& rKeyEvent )
{
if( rKeyEvent.GetKeyCode() == KEY_RETURN && !GetText().isEmpty() )
FirePosition( sal_True );
FirePosition( true );
else
NumericField::KeyInput( rKeyEvent );
}
......
......@@ -38,7 +38,7 @@ public:
virtual void LoseFocus() SAL_OVERRIDE;
protected:
virtual void FirePosition( sal_Bool _bForce );
virtual void FirePosition( bool _bForce );
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment