diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-03-01 19:00:05 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-03-01 19:00:05 +0000 |
commit | 95c95df94e697dcfdc9fa5e5446a6ae8b316015c (patch) | |
tree | 08c3685a9d89d79efafd49136df7b35c190feb67 /sfx2/source | |
parent | be07378d129b293cf722c6d25ffdc32b8687ef0b (diff) |
INTEGRATION: CWS removedrafts (1.5.366); FILE MERGED
2005/02/17 14:02:13 cd 1.5.366.1: #i42557# Move UNOIDL types from drafts to com
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/dialog/tplpitem.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sfx2/source/dialog/tplpitem.cxx b/sfx2/source/dialog/tplpitem.cxx index b93985914ca0..0c43ca70defc 100644 --- a/sfx2/source/dialog/tplpitem.cxx +++ b/sfx2/source/dialog/tplpitem.cxx @@ -2,9 +2,9 @@ * * $RCSfile: tplpitem.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: svesik $ $Date: 2004-04-21 13:14:42 $ + * last change: $Author: kz $ $Date: 2005-03-01 20:00:05 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -67,8 +67,8 @@ #include "tplpitem.hxx" -#ifndef _DRAFTS_COM_SUN_STAR_FRAME_STATUS_TEMPLATE_HPP_ -#include <drafts/com/sun/star/frame/status/Template.hpp> +#ifndef _COM_SUN_STAR_FRAME_STATUS_TEMPLATE_HPP_ +#include <com/sun/star/frame/status/Template.hpp> #endif @@ -128,7 +128,7 @@ SfxPoolItem* SfxTemplateItem::Clone( SfxItemPool *) const //------------------------------------------------------------------------- sal_Bool SfxTemplateItem::QueryValue( com::sun::star::uno::Any& rVal, BYTE nMemberId ) const { - drafts::com::sun::star::frame::status::Template aTemplate; + ::com::sun::star::frame::status::Template aTemplate; aTemplate.Value = GetValue(); aTemplate.StyleName = aStyle; @@ -140,7 +140,7 @@ sal_Bool SfxTemplateItem::QueryValue( com::sun::star::uno::Any& rVal, BYTE nMemb //------------------------------------------------------------------------- sal_Bool SfxTemplateItem::PutValue( const com::sun::star::uno::Any& rVal, BYTE nMemberId ) { - drafts::com::sun::star::frame::status::Template aTemplate; + ::com::sun::star::frame::status::Template aTemplate; if ( rVal >>= aTemplate ) { |