summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-03-01 18:36:30 +0000
committerKurt Zenker <kz@openoffice.org>2005-03-01 18:36:30 +0000
commit8ebabb15e1594c4380c616ea6f887fe05091fc28 (patch)
tree2d0739e15c0f232fc9f421a533957fe2d9faa85f
parent46c17a3b9d1614eda5daa338baebf0c68ed43da8 (diff)
INTEGRATION: CWS removedrafts (1.13.12); FILE MERGED
2005/02/17 12:47:40 cd 1.13.12.1: #i42557# move UNOIDL types from drafts to com
-rw-r--r--framework/source/helper/statusindicatorfactory.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/framework/source/helper/statusindicatorfactory.cxx b/framework/source/helper/statusindicatorfactory.cxx
index 0cdb16309fa5..f1063432546a 100644
--- a/framework/source/helper/statusindicatorfactory.cxx
+++ b/framework/source/helper/statusindicatorfactory.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: statusindicatorfactory.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: rt $ $Date: 2005-02-02 13:53:27 $
+ * last change: $Author: kz $ $Date: 2005-03-01 19:36:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -123,8 +123,8 @@
#include <com/sun/star/beans/XPropertySet.hpp>
#endif
-#ifndef _DRAFTS_COM_SUN_STAR_FRAME_XLAYOUTMANAGER_HPP_
-#include <drafts/com/sun/star/frame/XLayoutManager.hpp>
+#ifndef _COM_SUN_STAR_FRAME_XLAYOUTMANAGER_HPP_
+#include <com/sun/star/frame/XLayoutManager.hpp>
#endif
#ifndef _TOOLKIT_HELPER_VCLUNOHELPER_HXX_
@@ -477,14 +477,14 @@ void StatusIndicatorFactory::impl_createProgress()
css::uno::Reference< css::beans::XPropertySet > xPropSet(xFrame, css::uno::UNO_QUERY);
if (xPropSet.is())
{
- css::uno::Reference< dcss::frame::XLayoutManager > xLayoutManager;
+ css::uno::Reference< css::frame::XLayoutManager > xLayoutManager;
xPropSet->getPropertyValue(FRAME_PROPNAME_LAYOUTMANAGER) >>= xLayoutManager;
if (xLayoutManager.is())
{
xLayoutManager->createElement(PROGRESSBAR_RES_STR);
xLayoutManager->showElement (PROGRESSBAR_RES_STR);
- css::uno::Reference< dcss::ui::XUIElement > xProgressBar = xLayoutManager->getElement(PROGRESSBAR_RES_STR);
+ css::uno::Reference< css::ui::XUIElement > xProgressBar = xLayoutManager->getElement(PROGRESSBAR_RES_STR);
if (xProgressBar.is())
xProgress = css::uno::Reference< css::task::XStatusIndicator >(xProgressBar->getRealInterface(), css::uno::UNO_QUERY);
}