summaryrefslogtreecommitdiff
path: root/sd/source/ui
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui')
-rw-r--r--sd/source/ui/annotations/annotationwindow.cxx2
-rw-r--r--sd/source/ui/dlg/vectdlg.cxx2
-rw-r--r--sd/source/ui/slideshow/slideshowimpl.cxx2
-rw-r--r--sd/source/ui/slidesorter/view/SlsFramePainter.cxx2
-rw-r--r--sd/source/ui/table/TableDesignPane.cxx2
5 files changed, 5 insertions, 5 deletions
diff --git a/sd/source/ui/annotations/annotationwindow.cxx b/sd/source/ui/annotations/annotationwindow.cxx
index 5cef329d5f5c..24ce6a43e0e5 100644
--- a/sd/source/ui/annotations/annotationwindow.cxx
+++ b/sd/source/ui/annotations/annotationwindow.cxx
@@ -300,7 +300,7 @@ void AnnotationWindow::InitControls()
// window control for author and date
mpMeta = new MultiLineEdit(this,0);
mpMeta->SetReadOnly();
- mpMeta->SetRightToLeft(Application::GetSettings().GetLayoutRTL());
+ mpMeta->SetRightToLeft(AllSettings::GetLayoutRTL());
mpMeta->AlwaysDisableInput(true);
mpMeta->SetCallHandlersOnInputDisabled(true);
diff --git a/sd/source/ui/dlg/vectdlg.cxx b/sd/source/ui/dlg/vectdlg.cxx
index 2755789683f2..71d6ed9dd558 100644
--- a/sd/source/ui/dlg/vectdlg.cxx
+++ b/sd/source/ui/dlg/vectdlg.cxx
@@ -187,7 +187,7 @@ void SdVectorizeDlg::Calculate( Bitmap& rBmp, GDIMetaFile& rMtf )
AddTile( pRAcc, aNewMtf, nCountX * nTileX, nCountY * nTileY, nRestX, nRestY );
}
- aTmp.ReleaseAccess( pRAcc );
+ Bitmap::ReleaseAccess( pRAcc );
for( size_t n = 0, nCount = rMtf.GetActionSize(); n < nCount; n++ )
aNewMtf.AddAction( rMtf.GetAction( n )->Clone() );
diff --git a/sd/source/ui/slideshow/slideshowimpl.cxx b/sd/source/ui/slideshow/slideshowimpl.cxx
index 4879b51bd339..314d6b1339e5 100644
--- a/sd/source/ui/slideshow/slideshowimpl.cxx
+++ b/sd/source/ui/slideshow/slideshowimpl.cxx
@@ -827,7 +827,7 @@ bool SlideshowImpl::startPreview(
else if( mpViewShell )
{
Rectangle aContentRect (mpViewShell->GetViewShellBase().getClientRectangle());
- if (Application::GetSettings().GetLayoutRTL())
+ if (AllSettings::GetLayoutRTL())
{
aContentRect.Left() = aContentRect.Right();
aContentRect.Right() += aContentRect.Right();
diff --git a/sd/source/ui/slidesorter/view/SlsFramePainter.cxx b/sd/source/ui/slidesorter/view/SlsFramePainter.cxx
index 6a737066f120..07e9d2865e06 100644
--- a/sd/source/ui/slidesorter/view/SlsFramePainter.cxx
+++ b/sd/source/ui/slidesorter/view/SlsFramePainter.cxx
@@ -83,7 +83,7 @@ void FramePainter::AdaptColor (
if (pReadAccess == NULL)
return;
const Color aSourceColor = pReadAccess->GetColor(0,0);
- maCenter.maBitmap.GetBitmap().ReleaseAccess(pReadAccess);
+ Bitmap::ReleaseAccess(pReadAccess);
// Erase the center bitmap.
if (bEraseCenter)
diff --git a/sd/source/ui/table/TableDesignPane.cxx b/sd/source/ui/table/TableDesignPane.cxx
index 564b9265eab2..8e9f65b1a5c7 100644
--- a/sd/source/ui/table/TableDesignPane.cxx
+++ b/sd/source/ui/table/TableDesignPane.cxx
@@ -728,7 +728,7 @@ const Bitmap CreateDesignPreview( const Reference< XIndexAccess >& xTableStyle,
}
}
- aPreviewBmp.ReleaseAccess( pAccess );
+ Bitmap::ReleaseAccess( pAccess );
}
return aPreviewBmp;