summaryrefslogtreecommitdiff
path: root/avmedia
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-15 17:25:49 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-15 17:25:49 +0200
commitaa2444c6b130f89d0835ddc966ba639ad4caa6ff (patch)
tree54a21d9c330b88061c72112fe6027449e3ccdd82 /avmedia
parentb0bac593bb7634dc1e2d65fffcb4d3060f38a1d3 (diff)
avmedia: sal_False/True -> false/true
Change-Id: I0ecd9e016ab0faa75a58796568d19fe91f6dccee
Diffstat (limited to 'avmedia')
-rw-r--r--avmedia/source/framework/mediaitem.cxx2
-rw-r--r--avmedia/source/quicktime/player.mm2
-rw-r--r--avmedia/source/viewer/mediawindow.cxx4
-rw-r--r--avmedia/source/win/player.cxx4
4 files changed, 6 insertions, 6 deletions
diff --git a/avmedia/source/framework/mediaitem.cxx b/avmedia/source/framework/mediaitem.cxx
index 48901045e265..7861446c2d63 100644
--- a/avmedia/source/framework/mediaitem.cxx
+++ b/avmedia/source/framework/mediaitem.cxx
@@ -393,7 +393,7 @@ CreateStream(uno::Reference<embed::XStorage> const& xStorage,
//but currently xmloff has this one hardcoded anyway...
"application/vnd.sun.star.media")));
xStreamProps->setPropertyValue( // turn off compression
- "Compressed", uno::makeAny(sal_False));
+ "Compressed", uno::makeAny(false));
}
return xStream;
}
diff --git a/avmedia/source/quicktime/player.mm b/avmedia/source/quicktime/player.mm
index d4a0eb045058..403e7bfe6bb5 100644
--- a/avmedia/source/quicktime/player.mm
+++ b/avmedia/source/quicktime/player.mm
@@ -35,7 +35,7 @@ Player::Player( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) :
mxMgr( rxMgr ),
mpMovie( nil ),
/* GST
- mbFakeVideo (sal_False ),
+ mbFakeVideo (false ),
*/
mnUnmutedVolume( 0 ),
mnStopTime( DBL_MAX ), //max double
diff --git a/avmedia/source/viewer/mediawindow.cxx b/avmedia/source/viewer/mediawindow.cxx
index bf70de6e2146..b824c2dd4217 100644
--- a/avmedia/source/viewer/mediawindow.cxx
+++ b/avmedia/source/viewer/mediawindow.cxx
@@ -294,11 +294,11 @@ bool MediaWindow::executeMediaURLDialog(Window* /* pParent */,
// for video link should be the default
xCtrlAcc->setValue(
ui::dialogs::ExtendedFilePickerElementIds::CHECKBOX_LINK, 0,
- uno::makeAny(sal_True) );
+ uno::makeAny(true) );
// disabled for now: TODO: preview?
xCtrlAcc->enableControl(
ui::dialogs::ExtendedFilePickerElementIds::CHECKBOX_PREVIEW,
- sal_False);
+ false);
}
if( aDlg.Execute() == ERRCODE_NONE )
diff --git a/avmedia/source/win/player.cxx b/avmedia/source/win/player.cxx
index aca353c4d130..9fc766428746 100644
--- a/avmedia/source/win/player.cxx
+++ b/avmedia/source/win/player.cxx
@@ -97,7 +97,7 @@ Player::Player( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) :
mnFrameWnd( 0 ),
mbMuted( false ),
mbLooping( false ),
- mbAddWindow( sal_True )
+ mbAddWindow( true )
{
::CoInitialize( NULL );
}
@@ -201,7 +201,7 @@ const IVideoWindow* Player::getVideoWindow() const
void Player::setNotifyWnd( int nNotifyWnd )
{
- mbAddWindow = sal_False;
+ mbAddWindow = false;
if( mpME )
mpME->SetNotifyWindow( (OAHWND) nNotifyWnd, WM_GRAPHNOTIFY, reinterpret_cast< LONG_PTR>( this ) );
}