summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdpage.cxx
diff options
context:
space:
mode:
authorArmin Le Grand <Armin.Le.Grand@Sun.COM>2010-02-10 12:16:22 +0100
committerArmin Le Grand <Armin.Le.Grand@Sun.COM>2010-02-10 12:16:22 +0100
commit3497a025cea0fc5fc0a7ca3ad835b17c6ae38573 (patch)
tree8e2697b1da92cc90435215e8b6038d16a05639b7 /svx/source/svdraw/svdpage.cxx
parentbb0818a178385577253cbe0f2aaaa34ccb0a5dfe (diff)
aw079: changes after resync (linux)
Diffstat (limited to 'svx/source/svdraw/svdpage.cxx')
-rw-r--r--svx/source/svdraw/svdpage.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdpage.cxx b/svx/source/svdraw/svdpage.cxx
index b53606d53aeb..7516148d7a47 100644
--- a/svx/source/svdraw/svdpage.cxx
+++ b/svx/source/svdraw/svdpage.cxx
@@ -1214,7 +1214,8 @@ void ImpPageChange(SdrPage& rSdrPage)
}
SdrPageProperties::SdrPageProperties(SdrPage& rSdrPage)
-: mpSdrPage(&rSdrPage),
+: SfxListener(),
+ mpSdrPage(&rSdrPage),
mpStyleSheet(0),
mpProperties(new SfxItemSet(mpSdrPage->GetModel()->GetItemPool(), XATTR_FILL_FIRST, XATTR_FILL_LAST))
{
@@ -1225,7 +1226,8 @@ SdrPageProperties::SdrPageProperties(SdrPage& rSdrPage)
}
SdrPageProperties::SdrPageProperties(const SdrPageProperties& rCandidate)
-: mpSdrPage(rCandidate.mpSdrPage),
+: SfxListener(),
+ mpSdrPage(rCandidate.mpSdrPage),
mpStyleSheet(0),
mpProperties(new SfxItemSet(*rCandidate.mpProperties))
{
@@ -1241,7 +1243,7 @@ SdrPageProperties::~SdrPageProperties()
delete mpProperties;
}
-void SdrPageProperties::Notify(SfxBroadcaster& rBC, const SfxHint& rHint)
+void SdrPageProperties::Notify(SfxBroadcaster& /*rBC*/, const SfxHint& rHint)
{
const SfxSimpleHint* pSimpleHint = dynamic_cast< const SfxSimpleHint* >(&rHint);