summaryrefslogtreecommitdiff
path: root/sdext/source/presenter
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter')
-rw-r--r--sdext/source/presenter/PresenterPaneFactory.cxx4
-rw-r--r--sdext/source/presenter/PresenterPaneFactory.hxx1
2 files changed, 1 insertions, 4 deletions
diff --git a/sdext/source/presenter/PresenterPaneFactory.cxx b/sdext/source/presenter/PresenterPaneFactory.cxx
index 592277ff88b2..e9a5f950557e 100644
--- a/sdext/source/presenter/PresenterPaneFactory.cxx
+++ b/sdext/source/presenter/PresenterPaneFactory.cxx
@@ -235,7 +235,6 @@ Reference<XResource> PresenterPaneFactory::CreatePane (
{
return CreatePane(
rxPaneId,
- OUString(),
xParentPane,
rxPaneId->getFullResourceURL().Arguments == "Sprite=1");
}
@@ -249,7 +248,6 @@ Reference<XResource> PresenterPaneFactory::CreatePane (
Reference<XResource> PresenterPaneFactory::CreatePane (
const Reference<XResourceId>& rxPaneId,
- const OUString& rsTitle,
const Reference<drawing::framework::XPane>& rxParentPane,
const bool bIsSpritePane)
{
@@ -276,7 +274,7 @@ Reference<XResource> PresenterPaneFactory::CreatePane (
aArguments[0] <<= rxPaneId;
aArguments[1] <<= rxParentPane->getWindow();
aArguments[2] <<= rxParentPane->getCanvas();
- aArguments[3] <<= rsTitle;
+ aArguments[3] <<= OUString();
aArguments[4] <<= Reference<drawing::framework::XPaneBorderPainter>(
static_cast<XWeak*>(mpPresenterController->GetPaneBorderPainter().get()),
UNO_QUERY);
diff --git a/sdext/source/presenter/PresenterPaneFactory.hxx b/sdext/source/presenter/PresenterPaneFactory.hxx
index e1016d39fdfd..39aae51ccf15 100644
--- a/sdext/source/presenter/PresenterPaneFactory.hxx
+++ b/sdext/source/presenter/PresenterPaneFactory.hxx
@@ -104,7 +104,6 @@ private:
const css::uno::Reference<css::drawing::framework::XResourceId>& rxPaneId);
css::uno::Reference<css::drawing::framework::XResource> CreatePane (
const css::uno::Reference<css::drawing::framework::XResourceId>& rxPaneId,
- const OUString& rsTitle,
const css::uno::Reference<css::drawing::framework::XPane>& rxParentPane,
const bool bIsSpritePane);