summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--basic/source/classes/sbunoobj.cxx2
-rw-r--r--chart2/source/controller/main/ChartController.cxx2
-rw-r--r--connectivity/source/commontools/parameters.cxx2
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configuration.cxx2
-rw-r--r--filter/source/flash/swffilter.cxx2
-rw-r--r--helpcompiler/source/HelpLinker.cxx4
-rw-r--r--include/registry/types.h4
-rw-r--r--include/ucbhelper/resultsethelper.hxx2
-rw-r--r--offapi/com/sun/star/awt/XMessageBoxFactory.idl2
-rw-r--r--qadevOOo/runner/org/openoffice/Runner.java2
-rwxr-xr-xsd/source/ui/remotecontrol/mDNSResponder/DebugServices.h2
-rw-r--r--sw/source/core/access/accmap.cxx2
-rw-r--r--sw/source/core/inc/anchoredobjectposition.hxx4
-rw-r--r--wizards/com/sun/star/wizards/common/Helper.java2
-rw-r--r--xmloff/source/text/txtparai.cxx2
15 files changed, 18 insertions, 18 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index 74f5fec8ec69..3d8de56c1e31 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -3713,7 +3713,7 @@ void SbUnoService::SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType,
continue;
com::sun::star::uno::Type aType( xParamTypeDesc->getTypeClass(), xParamTypeDesc->getName() );
- // sbx paramter needs offset 1
+ // sbx parameter needs offset 1
pAnyArgs[i] = sbxToUnoValue( pParams->Get( iSbx ), aType );
// Check for out parameter if not already done
diff --git a/chart2/source/controller/main/ChartController.cxx b/chart2/source/controller/main/ChartController.cxx
index 9c8c49087094..446a816a429d 100644
--- a/chart2/source/controller/main/ChartController.cxx
+++ b/chart2/source/controller/main/ChartController.cxx
@@ -213,7 +213,7 @@ void ChartController::TheModel::tryTermination()
}
catch( const util::CloseVetoException& )
{
- //since we have indicated to give up the ownership with paramter true in close call
+ //since we have indicated to give up the ownership with parameter true in close call
//the one who has thrown the CloseVetoException is the new owner
#if OSL_DEBUG_LEVEL > 1
diff --git a/connectivity/source/commontools/parameters.cxx b/connectivity/source/commontools/parameters.cxx
index ebba03384f9e..fd1193e56264 100644
--- a/connectivity/source/commontools/parameters.cxx
+++ b/connectivity/source/commontools/parameters.cxx
@@ -555,7 +555,7 @@ namespace dbtools
sal_Int32 nMasterLen = m_aMasterFields.getLength();
// loop through all master fields. For each of them, get the respective column from the
- // parent , and forward its current value as paramter value to the (inner) row set
+ // parent , and forward its current value as parameter value to the (inner) row set
for ( sal_Int32 i = 0; i < nMasterLen; ++i, ++pMasterFields, ++pDetailFields )
{
// does the name denote a valid column in the parent?
diff --git a/desktop/source/deployment/registry/configuration/dp_configuration.cxx b/desktop/source/deployment/registry/configuration/dp_configuration.cxx
index 70ce05253487..1039c7265a00 100644
--- a/desktop/source/deployment/registry/configuration/dp_configuration.cxx
+++ b/desktop/source/deployment/registry/configuration/dp_configuration.cxx
@@ -126,7 +126,7 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
Reference<XCommandEnvironment> const & xCmdEnv );
void configmgrini_flush( Reference<XCommandEnvironment> const & xCmdEnv );
- /* The paramter isURL is false in the case of adding the conf:ini-entry
+ /* The parameter isURL is false in the case of adding the conf:ini-entry
value from the backend db. This entry already contains the path as it
is used in the configmgr.ini.
*/
diff --git a/filter/source/flash/swffilter.cxx b/filter/source/flash/swffilter.cxx
index 7cf9fd9fea6d..986a4039a6bb 100644
--- a/filter/source/flash/swffilter.cxx
+++ b/filter/source/flash/swffilter.cxx
@@ -196,7 +196,7 @@ OUString exportBackground(FlashExporter &aFlashExporter, Reference< XDrawPage >
OUString filename = STR("slide") + VAL(nPage+1) + STR(suffix) + STR(".swf");
OUString fullpath = sPath + STR("/") + filename;
- // AS: If suffix is "o" then the last paramter is true (for exporting objects).
+ // AS: If suffix is "o" then the last parameter is true (for exporting objects).
Reference<XOutputStream> xOutputStreamWrap(*(new OslOutputStreamWrapper(fullpath)), UNO_QUERY);
sal_uInt16 nCached = aFlashExporter.exportBackgrounds( xDrawPage, xOutputStreamWrap, sal::static_int_cast<sal_uInt16>( nPage ), *suffix == 'o' );
aFlashExporter.Flush();
diff --git a/helpcompiler/source/HelpLinker.cxx b/helpcompiler/source/HelpLinker.cxx
index 33e320a9b2db..3e1cfd4d29d5 100644
--- a/helpcompiler/source/HelpLinker.cxx
+++ b/helpcompiler/source/HelpLinker.cxx
@@ -800,7 +800,7 @@ void HelpLinker::main( std::vector<std::string> &args,
{
//No extension mode and extension mode using commandline
//!extsource.empty indicates extension mode using commandline
- // -idxcaption paramter is required
+ // -idxcaption parameter is required
std::stringstream aStrStream;
aStrStream << "no index caption stylesheet given" << std::endl;
throw HelpProcessingException( HELPPROCESSING_GENERAL_ERROR, aStrStream.str() );
@@ -824,7 +824,7 @@ void HelpLinker::main( std::vector<std::string> &args,
{
//No extension mode and extension mode using commandline
//!extsource.empty indicates extension mode using commandline
- // -idxcontent paramter is required
+ // -idxcontent parameter is required
std::stringstream aStrStream;
aStrStream << "no index content stylesheet given" << std::endl;
throw HelpProcessingException( HELPPROCESSING_GENERAL_ERROR, aStrStream.str() );
diff --git a/include/registry/types.h b/include/registry/types.h
index 73d79389c8d1..a4dc24a49b56 100644
--- a/include/registry/types.h
+++ b/include/registry/types.h
@@ -261,8 +261,8 @@ enum RTMethodMode {
/** specifies the mode of a parameter.
- There are three paramter modes which have impact of the handling of the
- paramter in the UNO bridges and the UNO code generation.
+ There are three parameter modes which have impact of the handling of the
+ parameter in the UNO bridges and the UNO code generation.
*/
enum RTParamMode {
/// indicates an invalid parameter mode
diff --git a/include/ucbhelper/resultsethelper.hxx b/include/ucbhelper/resultsethelper.hxx
index 28fb060b0579..bd6575e6083c 100644
--- a/include/ucbhelper/resultsethelper.hxx
+++ b/include/ucbhelper/resultsethelper.hxx
@@ -121,7 +121,7 @@ public:
* Construtor.
*
* @param rxContext is a Service Manager.
- * @param rCommand is the paramter for the open command that produces
+ * @param rCommand is the parameter for the open command that produces
* this resultset.
*/
ResultSetImplHelper(
diff --git a/offapi/com/sun/star/awt/XMessageBoxFactory.idl b/offapi/com/sun/star/awt/XMessageBoxFactory.idl
index 3a1df4126e15..510e51ebe9a3 100644
--- a/offapi/com/sun/star/awt/XMessageBoxFactory.idl
+++ b/offapi/com/sun/star/awt/XMessageBoxFactory.idl
@@ -50,7 +50,7 @@ published interface XMessageBoxFactory : com::sun::star::uno::XInterface
<p>A combination of com::sun::star::awt::MessageBoxButtons</p>
<p>A com::sun::star::awt::MessageBoxType::INFOBOX
- ignores this paramter, instead it uses a
+ ignores this parameter, instead it uses a
com::sun::star::awt::MessageBoxButtons::BUTTONS_OK.</p>
@param sTitle
diff --git a/qadevOOo/runner/org/openoffice/Runner.java b/qadevOOo/runner/org/openoffice/Runner.java
index 7ee8404f2355..6aecdf59d11d 100644
--- a/qadevOOo/runner/org/openoffice/Runner.java
+++ b/qadevOOo/runner/org/openoffice/Runner.java
@@ -218,7 +218,7 @@ public class Runner
{
System.out.println("==========================================================================");
System.out.println("No TestJob given, please make sure that you ");
- System.out.println("a.) called the OOoRunner with the paramter -o <job> or -sce <scenarioFile>");
+ System.out.println("a.) called the OOoRunner with the parameter -o <job> or -sce <scenarioFile>");
System.out.println("or");
System.out.println("b.) have an entry called TestJob in your used properties file");
System.out.println("==========================================================================");
diff --git a/sd/source/ui/remotecontrol/mDNSResponder/DebugServices.h b/sd/source/ui/remotecontrol/mDNSResponder/DebugServices.h
index 97ac12bccd36..b4e6ab2008f9 100755
--- a/sd/source/ui/remotecontrol/mDNSResponder/DebugServices.h
+++ b/sd/source/ui/remotecontrol/mDNSResponder/DebugServices.h
@@ -358,7 +358,7 @@ typedef uint32_t DebugPropertyTag;
/*! @defined DEBUG_UNUSED
- @abstract Macro to mark a paramter as unused to avoid unused parameter warnings.
+ @abstract Macro to mark a parameter as unused to avoid unused parameter warnings.
@discussion
diff --git a/sw/source/core/access/accmap.cxx b/sw/source/core/access/accmap.cxx
index bde58854591b..299a91bae6b4 100644
--- a/sw/source/core/access/accmap.cxx
+++ b/sw/source/core/access/accmap.cxx
@@ -624,7 +624,7 @@ class SwAccPreviewData
rectangle; needed to determine the visible part of the logic page rectangle.
@param _rPreviewWinSize
- input paramter - constant reference to the preview window size in TWIP;
+ input parameter - constant reference to the preview window size in TWIP;
needed to determine the visible part of the logic page rectangle
*/
void AdjustLogicPgRectToVisibleArea( SwRect& _iorLogicPgSwRect,
diff --git a/sw/source/core/inc/anchoredobjectposition.hxx b/sw/source/core/inc/anchoredobjectposition.hxx
index 90798d6292e2..b96e674a7095 100644
--- a/sw/source/core/inc/anchoredobjectposition.hxx
+++ b/sw/source/core/inc/anchoredobjectposition.hxx
@@ -258,7 +258,7 @@ namespace objectpositioning
called, if <mbDoNotCaptureAnchoredObj> not set.
@param _rPageAlignLayFrm
- input paramter - layout frame, which determines the 'page area'
+ input parameter - layout frame, which determines the 'page area'
the object has to be horizontal positioned in.
@param _nProposedRelPosX
@@ -301,7 +301,7 @@ namespace objectpositioning
is oriented at.
@param _rPageAlignLayFrm
- input paramter - layout frame, which determines the 'page area'
+ input parameter - layout frame, which determines the 'page area'
the object has to be horizontal positioned in.
@param _eRelOrient
diff --git a/wizards/com/sun/star/wizards/common/Helper.java b/wizards/com/sun/star/wizards/common/Helper.java
index 429bc6a9398b..3aa4628f6e20 100644
--- a/wizards/com/sun/star/wizards/common/Helper.java
+++ b/wizards/com/sun/star/wizards/common/Helper.java
@@ -267,7 +267,7 @@ public class Helper
/**
* checks if the value of an object that represents an array is null.
* check beforehand if the Object is really an array with "AnyConverter.IsArray(oObject)
- * @param oValue the paramter that has to represent an object
+ * @param oValue the parameter that has to represent an object
* @return a null reference if the array is empty
*/
public static Object getArrayValue(Object oValue)
diff --git a/xmloff/source/text/txtparai.cxx b/xmloff/source/text/txtparai.cxx
index 8bb11885ace8..caef6afda132 100644
--- a/xmloff/source/text/txtparai.cxx
+++ b/xmloff/source/text/txtparai.cxx
@@ -2028,7 +2028,7 @@ XMLParaContext::~XMLParaContext()
xTxtImport->FindOutlineStyleName( sStyleName, nOutlineLevel );
// set style and hard attributes at the previous paragraph
- // Add paramter <mbOutlineLevelAttrFound> (#i73509#)
+ // Add parameter <mbOutlineLevelAttrFound> (#i73509#)
sStyleName = xTxtImport->SetStyleAndAttrs( GetImport(), xAttrCursor,
sStyleName,
true,