summaryrefslogtreecommitdiff
path: root/svx/source/sidebar/graphic
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2015-04-21 17:03:46 +0100
committerMichael Meeks <michael.meeks@collabora.com>2015-04-21 17:33:17 +0100
commit9f81582c7e998f26a0f499ba2ef9c845b9df2358 (patch)
treeac350198248728744e9370c87b6f4ffe19e78843 /svx/source/sidebar/graphic
parent4fed8865be56ac431fb91e2432c6e93ce3f781c7 (diff)
Remove erroneous SAL_NO_ACQUIRE pieces introduced in error.
Change-Id: If8cd8fafea1f88360d86552ac94a985b1d1feae8
Diffstat (limited to 'svx/source/sidebar/graphic')
-rw-r--r--svx/source/sidebar/graphic/GraphicPropertyPanel.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/svx/source/sidebar/graphic/GraphicPropertyPanel.cxx b/svx/source/sidebar/graphic/GraphicPropertyPanel.cxx
index 81b0cac29732..3b144644e615 100644
--- a/svx/source/sidebar/graphic/GraphicPropertyPanel.cxx
+++ b/svx/source/sidebar/graphic/GraphicPropertyPanel.cxx
@@ -254,13 +254,10 @@ VclPtr<vcl::Window> GraphicPropertyPanel::Create (
if (pBindings == NULL)
throw lang::IllegalArgumentException("no SfxBindings given to GraphicPropertyPanel::Create", NULL, 2);
- return VclPtr<vcl::Window>(
- VclPtr<GraphicPropertyPanel>::Create(
-
+ return VclPtr<GraphicPropertyPanel>::Create(
pParent,
rxFrame,
- pBindings),
- SAL_NO_ACQUIRE);
+ pBindings);
}