diff options
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/presenter/PresenterNotesView.cxx | 2 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterScrollBar.cxx | 2 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterSlidePreview.cxx | 2 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterWindowManager.cxx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/sdext/source/presenter/PresenterNotesView.cxx b/sdext/source/presenter/PresenterNotesView.cxx index 436202bd67ce..ca3e362fcc19 100644 --- a/sdext/source/presenter/PresenterNotesView.cxx +++ b/sdext/source/presenter/PresenterNotesView.cxx @@ -633,7 +633,7 @@ void PresenterNotesView::ChangeFontSize (const sal_Int32 nSizeChange) if (pConfiguration == nullptr || !pConfiguration->IsValid()) return; - pConfiguration->GoToChild(OUString("Font")); + pConfiguration->GoToChild("Font"); pConfiguration->SetProperty("Size", Any(static_cast<sal_Int32>(nNewSize+0.5))); pConfiguration->CommitChanges(); } diff --git a/sdext/source/presenter/PresenterScrollBar.cxx b/sdext/source/presenter/PresenterScrollBar.cxx index 9be3b86776e2..01b71c3e99cf 100644 --- a/sdext/source/presenter/PresenterScrollBar.cxx +++ b/sdext/source/presenter/PresenterScrollBar.cxx @@ -249,7 +249,7 @@ void PresenterScrollBar::SetCanvas (const Reference<css::rendering::XCanvas>& rx try { mpBitmaps.reset(new PresenterBitmapContainer( - OUString("PresenterScreenSettings/ScrollBar/Bitmaps"), + "PresenterScreenSettings/ScrollBar/Bitmaps", std::shared_ptr<PresenterBitmapContainer>(), mxComponentContext, mxCanvas)); diff --git a/sdext/source/presenter/PresenterSlidePreview.cxx b/sdext/source/presenter/PresenterSlidePreview.cxx index 1c8d813fa9b5..b81c42660b50 100644 --- a/sdext/source/presenter/PresenterSlidePreview.cxx +++ b/sdext/source/presenter/PresenterSlidePreview.cxx @@ -97,7 +97,7 @@ PresenterSlidePreview::PresenterSlidePreview ( rxContext), UNO_QUERY); mpBitmaps.reset(new PresenterBitmapContainer( - OUString("PresenterScreenSettings/ScrollBar/Bitmaps"), + "PresenterScreenSettings/ScrollBar/Bitmaps", std::shared_ptr<PresenterBitmapContainer>(), rxContext, mxCanvas)); diff --git a/sdext/source/presenter/PresenterWindowManager.cxx b/sdext/source/presenter/PresenterWindowManager.cxx index 9a5adc481daa..a4ea38e65516 100644 --- a/sdext/source/presenter/PresenterWindowManager.cxx +++ b/sdext/source/presenter/PresenterWindowManager.cxx @@ -498,7 +498,7 @@ void PresenterWindowManager::StoreViewMode (const ViewMode eViewMode) mxComponentContext, "/org.openoffice.Office.PresenterScreen/", PresenterConfigurationAccess::READ_WRITE); - aConfiguration.GoToChild(OUString("Presenter")); + aConfiguration.GoToChild("Presenter"); Any aValue; switch (eViewMode) { |