summaryrefslogtreecommitdiff
path: root/sd/source/ui/slidesorter/shell
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-10-25 15:42:11 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-10-25 15:42:11 +0200
commit1d3661cf91cf45d40373b0034c30eb57b475ec91 (patch)
tree47ccd9382b1deead4591bbfdeb8f0149d8e00516 /sd/source/ui/slidesorter/shell
parent4a122d1e61278debe7e386e3d9f442e68eddba9b (diff)
Unwind FunctionReference typedef
Change-Id: Iaf1b041adf2220d6b0220a86d8ac0db38b3b8ebc
Diffstat (limited to 'sd/source/ui/slidesorter/shell')
-rw-r--r--sd/source/ui/slidesorter/shell/SlideSorter.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/slidesorter/shell/SlideSorter.cxx b/sd/source/ui/slidesorter/shell/SlideSorter.cxx
index 791f9eb4e691..134e68e204a3 100644
--- a/sd/source/ui/slidesorter/shell/SlideSorter.cxx
+++ b/sd/source/ui/slidesorter/shell/SlideSorter.cxx
@@ -54,7 +54,7 @@ class ContentWindow : public ::sd::Window
public:
ContentWindow(::Window& rParent, SlideSorter& rSlideSorter);
~ContentWindow (void);
- void SetCurrentFunction (const FunctionReference& rpFunction);
+ void SetCurrentFunction (const rtl::Reference<FuPoor>& rpFunction);
virtual void Paint(const Rectangle& rRect);
virtual void KeyInput (const KeyEvent& rEvent);
virtual void MouseMove (const MouseEvent& rEvent);
@@ -65,7 +65,7 @@ public:
private:
SlideSorter& mrSlideSorter;
- FunctionReference mpCurrentFunction;
+ rtl::Reference<FuPoor> mpCurrentFunction;
};
}
@@ -552,7 +552,7 @@ bool SlideSorter::RelocateToWindow (::Window* pParentWindow)
-void SlideSorter::SetCurrentFunction (const FunctionReference& rpFunction)
+void SlideSorter::SetCurrentFunction (const rtl::Reference<FuPoor>& rpFunction)
{
if (GetViewShell() != NULL)
{
@@ -613,7 +613,7 @@ ContentWindow::~ContentWindow (void)
-void ContentWindow::SetCurrentFunction (const FunctionReference& rpFunction)
+void ContentWindow::SetCurrentFunction (const rtl::Reference<FuPoor>& rpFunction)
{
mpCurrentFunction = rpFunction;
}