diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-03-10 18:58:02 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-11 05:04:40 +0000 |
commit | fba66b325c493567126b23d481d75ee00dc9c30d (patch) | |
tree | 4b8d64cc253aef14a22c5638b5f8175bc0049dcf /framework/inc | |
parent | b4fdb46a75731b22eb85671af4773e5bc9208f85 (diff) |
Fix typos
Change-Id: I19d30a1ef4236dbe0a0053dad67a5ba7b1586fc8
Reviewed-on: https://gerrit.libreoffice.org/35054
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Johnny_M <klasse@partyheld.de>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework/inc')
-rw-r--r-- | framework/inc/dispatch/dispatchprovider.hxx | 2 | ||||
-rw-r--r-- | framework/inc/dispatch/popupmenudispatcher.hxx | 2 | ||||
-rw-r--r-- | framework/inc/helper/persistentwindowstate.hxx | 2 | ||||
-rw-r--r-- | framework/inc/interaction/quietinteraction.hxx | 2 | ||||
-rw-r--r-- | framework/inc/macros/xinterface.hxx | 6 | ||||
-rw-r--r-- | framework/inc/recording/dispatchrecordersupplier.hxx | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/framework/inc/dispatch/dispatchprovider.hxx b/framework/inc/dispatch/dispatchprovider.hxx index ab00668f55db..185fe8a9fc42 100644 --- a/framework/inc/dispatch/dispatchprovider.hxx +++ b/framework/inc/dispatch/dispatchprovider.hxx @@ -63,7 +63,7 @@ enum EDispatchHelper - a normal frame never can create a new one by himself @attention Use this class as member only! Never use it as baseclass. - XInterface will be ambigous and we hold a weakreference to our OWNER - not to our SUPERCLASS! + XInterface will be ambiguous and we hold a weakreference to our OWNER - not to our SUPERCLASS! @base OWeakObject provides ref count and weak mechanism diff --git a/framework/inc/dispatch/popupmenudispatcher.hxx b/framework/inc/dispatch/popupmenudispatcher.hxx index 01cf4a6ca8b7..6b82239c03e4 100644 --- a/framework/inc/dispatch/popupmenudispatcher.hxx +++ b/framework/inc/dispatch/popupmenudispatcher.hxx @@ -55,7 +55,7 @@ typedef cppu::OMultiTypeInterfaceContainerHelperVar<OUString> /*-************************************************************************************************************ @short helper for desktop only(!) to create new tasks on demand for dispatches @descr Use this class as member only! Never use it as baseclass. - XInterface will be ambigous and we hold a weakcss::uno::Reference to our OWNER - not to our SUPERCLASS! + XInterface will be ambiguous and we hold a weakcss::uno::Reference to our OWNER - not to our SUPERCLASS! @implements XInterface XDispatch diff --git a/framework/inc/helper/persistentwindowstate.hxx b/framework/inc/helper/persistentwindowstate.hxx index efd6cebfd304..40730a4c6bde 100644 --- a/framework/inc/helper/persistentwindowstate.hxx +++ b/framework/inc/helper/persistentwindowstate.hxx @@ -140,7 +140,7 @@ class PersistentWindowState : public ::cppu::WeakImplHelper< @param sModuleName identifies the application module, where the - information should be setted on. + information should be set on. @param sWindowState contains the information about position and size. diff --git a/framework/inc/interaction/quietinteraction.hxx b/framework/inc/interaction/quietinteraction.hxx index 04eb5169b459..305a819a7a89 100644 --- a/framework/inc/interaction/quietinteraction.hxx +++ b/framework/inc/interaction/quietinteraction.hxx @@ -60,7 +60,7 @@ class QuietInteraction : public ::cppu::WeakImplHelper< @interface XInteractionHandler @short called from outside to handle a problem @descr The only interaction we can handle here is to - decide which of two ambigous filters should be really used. + decide which of two ambiguous filters should be really used. We use the user selected one every time. All other request will be aborted and can break the code, which use this interaction handler. diff --git a/framework/inc/macros/xinterface.hxx b/framework/inc/macros/xinterface.hxx index 4a57c3d69f8c..737e5cdadd49 100644 --- a/framework/inc/macros/xinterface.hxx +++ b/framework/inc/macros/xinterface.hxx @@ -35,8 +35,8 @@ namespace framework{ Please use follow public macros only! 1) DEFINE_XINTERFACE => use it in header to declare XInterface and his methods - 2) DIRECT_INTERFACE( INTERFACE ) => use it as parameter INTERFACEx at 4) if interface not ambigous - 3) DERIVED_INTERFACE( BASEINTERFACE, DERIVEDINTERFACE ) => use it as parameter INTERFACEx at 4) if interface can be ambigous + 2) DIRECT_INTERFACE( INTERFACE ) => use it as parameter INTERFACEx at 4) if interface not ambiguous + 3) DERIVED_INTERFACE( BASEINTERFACE, DERIVEDINTERFACE ) => use it as parameter INTERFACEx at 4) if interface can be ambiguous 4) DECLARE_XINTERFACE_0( CLASS, BASECLASS ) => use it to define implementation of XInterface for 0 additional interface to baseclass DECLARE_XINTERFACE_1( CLASS, BASECLASS, INTERFACE1 ) => use it to define implementation of XInterface for 1 additional interface to baseclass ... @@ -120,7 +120,7 @@ ________________________________________________________________________________ static_cast< INTERFACE* >( this ) // Use it as parameter for DEFINE_XINTERFACE_X(), if you CAN'T use an interface directly in queryInterface()! -// (zB at ambigous errors!) +// (zB at ambiguous errors!) #define DERIVED_INTERFACE( BASEINTERFACE, DERIVEDINTERFACE ) \ static_cast< BASEINTERFACE* >( static_cast< DERIVEDINTERFACE* >( this ) ) diff --git a/framework/inc/recording/dispatchrecordersupplier.hxx b/framework/inc/recording/dispatchrecordersupplier.hxx index 14b02b43ca4d..5942e85aff6e 100644 --- a/framework/inc/recording/dispatchrecordersupplier.hxx +++ b/framework/inc/recording/dispatchrecordersupplier.hxx @@ -54,7 +54,7 @@ class DispatchRecorderSupplier : public ::cppu::WeakImplHelper< /** provided dispatch recorder of this supplier instance - @life Is controlled from outside. Because this variable is setted + @life Is controlled from outside. Because this variable is set from there and not created internally. But we release our reference to it if we die. */ |