summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterViewFactory.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-07-11 12:42:48 +0000
committerRüdiger Timm <rt@openoffice.org>2008-07-11 12:42:48 +0000
commitdde35b9b8e43dc3d5bcdad75453f977d6c868508 (patch)
tree7bc0e0446f02bf47a56d36365f0b44fffd8eacbf /sdext/source/presenter/PresenterViewFactory.cxx
parente3d96d6731d5d65de3b5b00561ae028d384cfc99 (diff)
INTEGRATION: CWS presenterfixes (1.4.2); FILE MERGED
2008/05/27 07:41:30 af 1.4.2.1: #i88854# Added ReleaseView to CachablePresenterView.
Diffstat (limited to 'sdext/source/presenter/PresenterViewFactory.cxx')
-rw-r--r--sdext/source/presenter/PresenterViewFactory.cxx11
1 files changed, 10 insertions, 1 deletions
diff --git a/sdext/source/presenter/PresenterViewFactory.cxx b/sdext/source/presenter/PresenterViewFactory.cxx
index 17ca50f32a30..bcda35866d62 100644
--- a/sdext/source/presenter/PresenterViewFactory.cxx
+++ b/sdext/source/presenter/PresenterViewFactory.cxx
@@ -8,7 +8,7 @@
*
* $RCSfile: PresenterViewFactory.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
* This file is part of OpenOffice.org.
*
@@ -320,6 +320,8 @@ void SAL_CALL PresenterViewFactory::releaseResource (const Reference<XResource>&
{
try
{
+ if (pView != NULL)
+ pView->ReleaseView();
Reference<lang::XComponent> xComponent (rxView, UNO_QUERY);
if (xComponent.is())
xComponent->dispose();
@@ -642,4 +644,11 @@ void CachablePresenterView::DeactivatePresenterView (void)
+
+void CachablePresenterView::ReleaseView (void)
+{
+}
+
+
+
} }