[Libreoffice-commits] core.git: 2 commits - chart2/source framework/source sfx2/source
Julien Nabet
serval2412 at yahoo.fr
Sun Feb 8 05:27:51 PST 2015
chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx | 2 +-
chart2/source/controller/main/ChartController.cxx | 2 +-
framework/source/services/desktop.cxx | 4 ++--
framework/source/services/dispatchhelper.cxx | 2 +-
framework/source/services/frame.cxx | 4 ++--
sfx2/source/dialog/backingcomp.cxx | 2 +-
6 files changed, 8 insertions(+), 8 deletions(-)
New commits:
commit b97341c8706363e517fbd3d12d76c5b92c1aea51
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sun Feb 8 14:26:27 2015 +0100
Typo: we has->we have
Change-Id: Ib225351c908f5a2e64b039e07030e5d91a9b8dd7
diff --git a/framework/source/services/desktop.cxx b/framework/source/services/desktop.cxx
index 3b765fb..d686b75 100644
--- a/framework/source/services/desktop.cxx
+++ b/framework/source/services/desktop.cxx
@@ -1044,7 +1044,7 @@ void SAL_CALL Desktop::disposing()
// So nobody can use us any longer.
// Exception: Only removing of listener will work ... and this code can't be dangerous.
- // First we has to kill all listener connections.
+ // First we have to kill all listener connections.
// They might rely on our member and can hinder us on releasing them.
css::uno::Reference< css::uno::XInterface > xThis ( static_cast< ::cppu::OWeakObject* >(this), css::uno::UNO_QUERY );
css::lang::EventObject aEvent( xThis );
diff --git a/framework/source/services/dispatchhelper.cxx b/framework/source/services/dispatchhelper.cxx
index 992879f..4548670 100644
--- a/framework/source/services/dispatchhelper.cxx
+++ b/framework/source/services/dispatchhelper.cxx
@@ -158,7 +158,7 @@ void SAL_CALL DispatchHelper::dispatchFinished( const css::frame::DispatchResult
m_xBroadcaster.clear();
}
-/** we has to realease our broadcaster reference.
+/** we have to release our broadcaster reference.
@param aEvent
describe the source of this event and MUST be our save broadcaster!
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx
index 02dfd2c..5cdb57e 100644
--- a/framework/source/services/frame.cxx
+++ b/framework/source/services/frame.cxx
@@ -1463,7 +1463,7 @@ void SAL_CALL Frame::contextChanged() throw( css::uno::RuntimeException, std::ex
/*-****************************************************************************************************
@short set new component inside the frame
- @descr A frame is a container for a component. Use this method to set, change or realease it!
+ @descr A frame is a container for a component. Use this method to set, change or release it!
We accept null references! The xComponentWindow will be a child of our container window
and get all window events from us.
diff --git a/sfx2/source/dialog/backingcomp.cxx b/sfx2/source/dialog/backingcomp.cxx
index db35553..e8f49fb 100644
--- a/sfx2/source/dialog/backingcomp.cxx
+++ b/sfx2/source/dialog/backingcomp.cxx
@@ -328,7 +328,7 @@ css::uno::Sequence< OUString > SAL_CALL BackingComp::getSupportedServiceNames()
/**
attach this component to a target frame.
- We has to use the container window of this frame as parent window of our own component window.
+ We have to use the container window of this frame as parent window of our own component window.
But it's not allowed to work with it really. May another component used it too.
Currently we need it only to create our child component window and support it's
interfaces inside our queryInterface() method. The user of us must have e.g. the
commit df15d179a07be2aa2f6e2cb2066e6567081c399e
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sun Feb 8 14:23:45 2015 +0100
Typo: relaese->release
Change-Id: I9e2e8f11c376fc808b12bc1db509babeac0ff7d8
diff --git a/chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx b/chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx
index 2834ba3..5a777db 100644
--- a/chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx
+++ b/chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx
@@ -183,7 +183,7 @@ void SAL_CALL CreationWizardUnoDlg::notifyTermination( const lang::EventObject&
void SAL_CALL CreationWizardUnoDlg::disposing( const lang::EventObject& /*Source*/ ) throw (uno::RuntimeException, std::exception)
{
- //Listener should deregister himself and relaese all references to the closing object.
+ //Listener should deregister himself and release all references to the closing object.
}
void SAL_CALL CreationWizardUnoDlg::setTitle( const OUString& /*rTitle*/ ) throw(uno::RuntimeException, std::exception)
diff --git a/chart2/source/controller/main/ChartController.cxx b/chart2/source/controller/main/ChartController.cxx
index a16a4ab..780ea46 100644
--- a/chart2/source/controller/main/ChartController.cxx
+++ b/chart2/source/controller/main/ChartController.cxx
@@ -879,7 +879,7 @@ void SAL_CALL ChartController::notifyClosing(
const lang::EventObject& rSource )
throw(uno::RuntimeException, std::exception)
{
- //Listener should deregister himself and relaese all references to the closing object.
+ //Listener should deregister himself and release all references to the closing object.
TheModelRef aModelRef( m_aModel, m_aModelMutex);
if( impl_releaseThisModel( rSource.Source ) )
diff --git a/framework/source/services/desktop.cxx b/framework/source/services/desktop.cxx
index 502f7d9..3b765fb 100644
--- a/framework/source/services/desktop.cxx
+++ b/framework/source/services/desktop.cxx
@@ -145,7 +145,7 @@ void Desktop::constructorInit()
@param "xFactory" is the multi service manager, which create this instance.
The value must be different from NULL!
- @onerror We throw an ASSERT in debug version or do nothing in relaese version.
+ @onerror We throw an ASSERT in debug version or do nothing in release version.
*//*-*************************************************************************************************************/
Desktop::Desktop( const css::uno::Reference< css::uno::XComponentContext >& xContext )
: TransactionBase ( )
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx
index b5b69ea..02dfd2c 100644
--- a/framework/source/services/frame.cxx
+++ b/framework/source/services/frame.cxx
@@ -486,7 +486,7 @@ DEFINE_XTYPEPROVIDER_21 ( Frame
@param xContext is the multi service manager, which creates this instance.
The value must be different from NULL!
- @onerror ASSERT in debug version or nothing in relaese version.
+ @onerror ASSERT in debug version or nothing in release version.
*//*-*****************************************************************************************************/
Frame::Frame( const css::uno::Reference< css::uno::XComponentContext >& xContext )
: TransactionBase ( )
More information about the Libreoffice-commits
mailing list