diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-04-04 13:04:52 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-04-04 13:04:52 +0000 |
commit | 39d251a6176e3671395e61b1cdd4f78bcb30d76d (patch) | |
tree | 2969f229ee65a06442ff25430611a1f6bcceb5fc /basctl/source/basicide/basides2.cxx | |
parent | a9a6cb8d22a4d0742f3e0cbee80913084d36f312 (diff) |
INTEGRATION: CWS titles02 (1.22.2); FILE MERGED
2007/12/12 09:22:17 as 1.22.2.1: #116375# use new title feature in basic ide too
Diffstat (limited to 'basctl/source/basicide/basides2.cxx')
-rw-r--r-- | basctl/source/basicide/basides2.cxx | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/basctl/source/basicide/basides2.cxx b/basctl/source/basicide/basides2.cxx index d7e537379277..a21478dde781 100644 --- a/basctl/source/basicide/basides2.cxx +++ b/basctl/source/basicide/basides2.cxx @@ -4,9 +4,9 @@ * * $RCSfile: basides2.cxx,v $ * - * $Revision: 1.22 $ + * $Revision: 1.23 $ * - * last change: $Author: ihi $ $Date: 2007-11-21 16:37:21 $ + * last change: $Author: kz $ $Date: 2008-04-04 14:04:52 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -49,6 +49,8 @@ #define _SOLAR__PRIVATE 1 +#include <com/sun/star/frame/XTitle.hpp> + #include <vcl/sound.hxx> #include <basidesh.hxx> #include <basidesh.hrc> @@ -64,7 +66,7 @@ using namespace ::com::sun::star; using namespace ::com::sun::star::uno; - +namespace css = ::com::sun::star; IMPL_LINK_INLINE_START( BasicIDEShell, ObjectDialogCancelHdl, ObjectCatalog *, EMPTYARG ) { @@ -196,6 +198,11 @@ void BasicIDEShell::SetMDITitle() pShell->SetTitle( aTitle ); pShell->SetModified( FALSE ); } + + css::uno::Reference< css::frame::XController > xController = GetController (); + css::uno::Reference< css::frame::XTitle > xTitle (xController, css::uno::UNO_QUERY); + if (xTitle.is ()) + xTitle->setTitle (aTitle); } } |