Kaydet (Commit) 446568bf authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Noel Grandin

Fix typos

Change-Id: I139e6948e92a7bcdce5a2197b9d3754cb9549a33
Reviewed-on: https://gerrit.libreoffice.org/34781Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
Tested-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 65434e87
......@@ -122,7 +122,7 @@ public class GridControl
// TODO: check all those generic properties for equality
// the data model and the column model should have been cloned, too
// in particular, the clone should not share the sub models with the orignal
// in particular, the clone should not share the sub models with the original
final XMutableGridDataModel originalDataModel = UnoRuntime.queryInterface( XMutableGridDataModel.class,
m_gridControlModel.getPropertyValue( "GridDataModel" ) );
final XMutableGridDataModel clonedDataModel = UnoRuntime.queryInterface( XMutableGridDataModel.class,
......
......@@ -642,7 +642,7 @@ ImplGroupData* Config::ImplGetGroup() const
mpData->mpFirstGroup = pGroup;
}
// Always inherit group names and upate cache members
// Always inherit group names and update cache members
pGroup->maGroupName = maGroupName;
const_cast<Config*>(this)->mnDataUpdateId = mpData->mnDataUpdateId;
const_cast<Config*>(this)->mpActGroup = pGroup;
......
......@@ -637,7 +637,7 @@ namespace fileaccess
// Helper function for mkfil,mkdir and write
// Creates whole path
// returns success of the operation
// The calle determines the errorCode, which should be used to install
// The call determines the errorCode, which should be used to install
// any error
bool SAL_CALL
......
......@@ -4232,7 +4232,7 @@ bool Content::isResourceAvailable( const css::uno::Reference< css::ucb::XCommand
{
// To check for the physical URL resource availability, first
// try using a simple HEAD command
// if HEAD is successfull, set element found,
// if HEAD is successful, set element found,
rResAccess->HEAD( aHeaderNames, aResource, xEnv );
rDAVOptions.setHttpResponseStatusCode( 0 );
OUString aNoText;
......
......@@ -43,7 +43,7 @@
bridging code involved when those types are being used.
</p>
<p>Sometimes a bridge cannot be created, depending on whether a programm uses
<p>Sometimes a bridge cannot be created, depending on whether a program uses
the XBridgeSupplier2 interface remotely. Assuming one wants to bridge an
OLE Automation object to UNO by calling createBridge on a proxy, then the UNO remote
bridge would not recognise that the Any argument contains an IDispatch interface.
......
......@@ -58,10 +58,10 @@ published interface XInputStream: com::sun::star::uno::XInterface
<li> neither caller nor callee keep a second reference to the same
sequence.
<li> the sequence is pre-allocated with the requested number of bytes.
<li> the same sequence is reused ( simply preallocationg a new
sequence for every call bears no advantage ).
<li> the call is not bridged (e.g., betweeen different compilers
or different processes ).
<li> the same sequence is reused (simply preallocationg a new
sequence for every call bears no advantage).
<li> the call is not bridged (e.g., between different compilers
or different processes).
</ol>
<br>
If the same 'optimized' code runs against an interface in a different process,
......
......@@ -67,7 +67,7 @@ module registry {};
/// Scripting language bindings.
module script {};
/// Interface for authorisation and authentification.
/// Interface for authorisation and authentication.
module security {};
/// Basic UNO interfaces.
......
......@@ -25,7 +25,7 @@
module com { module sun { module star { module script {
/**
An object supporting this interface indicates to interested
parties or clients the name of the default propery for
parties or clients the name of the default property for
this object.
<p>For example where ExampleObject is an instance of an Object that
supports this interface which returns the default property name
......
......@@ -25,7 +25,7 @@
module com { module sun { module star { module task {
/** An interaction continuation specifing to abort executing the process that
/** An interaction continuation specifying to abort executing the process that
issued the request.
*/
published interface XInteractionAbort: com::sun::star::task::XInteractionContinuation
......
......@@ -25,7 +25,7 @@
module com { module sun { module star { module task {
/** An interaction continuation specifing to try to re-execute the process
/** An interaction continuation specifying to try to re-execute the process
that issued the request.
*/
published interface XInteractionRetry: com::sun::star::task::XInteractionContinuation
......
......@@ -306,7 +306,7 @@ if __name__ == "__main__":
parser = argparse.ArgumentParser("Help utilities for testing LibreOffice")
group = parser.add_mutually_exclusive_group()
group.add_argument("-v", "--verbose", help="increase output verbosity", action="store_true")
#parser.add_argument("p", type=str, help="programm name")
#parser.add_argument("p", type=str, help="program name")
args = parser.parse_args()
if args.verbose:
verbose = True
......
......@@ -80,7 +80,7 @@ class SvtDynMenu
public:
// append setup written menu entry
// Don't touch name of entry. It was defined by setup and must be the same every time!
// Look for double menu entries here too... may be some separator items are superflous...
// Look for double menu entries here too... may be some separator items are superfluous...
void AppendSetupEntry( const SvtDynMenuEntry& rEntry )
{
if(
......
......@@ -421,7 +421,7 @@ OUString GetEnglishSearchFontName(const OUString& rInName)
{
typedef std::unordered_map<OUString, const char*, OUStringHash> FontNameDictionary;
static FontNameDictionary aDictionary( SAL_N_ELEMENTS(aImplLocalizedNamesList) );
// the font name dictionary needs to be intialized once
// the font name dictionary needs to be initialized once
if( aDictionary.empty() )
{
// TODO: check if all dictionary entries are already normalized?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment