summaryrefslogtreecommitdiff
path: root/vcl/osx/salframe.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/osx/salframe.cxx')
-rw-r--r--vcl/osx/salframe.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/vcl/osx/salframe.cxx b/vcl/osx/salframe.cxx
index 1bd88a810bc0..ce5ada142911 100644
--- a/vcl/osx/salframe.cxx
+++ b/vcl/osx/salframe.cxx
@@ -291,20 +291,20 @@ SalGraphics* AquaSalFrame::AcquireGraphics()
mpGraphics->SetWindowGraphics( this );
}
- mbGraphics = TRUE;
+ mbGraphics = true;
return mpGraphics;
}
void AquaSalFrame::ReleaseGraphics( SalGraphics *pGraphics )
{
SAL_WARN_IF( pGraphics != mpGraphics, "vcl", "graphics released on wrong frame" );
- mbGraphics = FALSE;
+ mbGraphics = false;
}
bool AquaSalFrame::PostEvent(std::unique_ptr<ImplSVEvent> pData)
{
GetSalData()->mpInstance->PostEvent( this, pData.release(), SalEvent::UserEvent );
- return TRUE;
+ return true;
}
void AquaSalFrame::SetTitle(const OUString& rTitle)
@@ -680,9 +680,9 @@ bool AquaSalFrame::GetWindowState( SalFrameState* pState )
pState->mnWidth = maGeometry.nWidth;
pState->mnHeight = maGeometry.nHeight;
pState->mnState = WindowStateState::Normal;
- return TRUE;
+ return true;
}
- return FALSE;
+ return false;
}
OSX_SALDATA_RUNINMAIN_UNION( GetWindowState( pState ), boolean )
@@ -708,7 +708,7 @@ bool AquaSalFrame::GetWindowState( SalFrameState* pState )
else
pState->mnState = WindowStateState::Maximized;
- return TRUE;
+ return true;
}
void AquaSalFrame::SetScreenNumber(unsigned int nScreen)
@@ -1543,7 +1543,7 @@ bool AquaSalFrame::SetPluginParent( SystemParentData* )
bool AquaSalFrame::MapUnicodeToKeyCode( sal_Unicode , LanguageType , vcl::KeyCode& )
{
// not supported yet
- return FALSE;
+ return false;
}
LanguageType AquaSalFrame::GetInputLanguage()
@@ -1593,7 +1593,7 @@ void AquaSalFrame::SetParent( SalFrame* pNewParent )
bool bShown = mbShown;
// remove from child list
if (bShown)
- Show(FALSE);
+ Show(false);
mpParent = static_cast<AquaSalFrame*>(pNewParent);
// insert to correct parent and paint
Show( bShown );
1221&id=e764b46eea2aab37b7f62d6bf495d2b80080e3b2'>Resolves: fdo#63228 Printers list does not increase height with Print DialogCaolán McNamara 2014-03-31Resolves: fdo#43049 basic PPD custom options supportCaolán McNamara 2014-03-31add mnemonic widgetsCaolán McNamara 2014-03-21move remaining padmin dialogs into vclCaolán McNamara 2014-03-21move the cups password dialog from padmin to vclCaolán McNamara 2014-03-21move the fax dialog from padmin to vclCaolán McNamara 2013-12-23convert print progress dialog to .uiCaolán McNamara 2013-08-24add gtk_message_dialog_new-alike ctor for MessageDialogCaolán McNamara