summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2014-05-13 23:26:20 +0200
committerJulien Nabet <serval2412@yahoo.fr>2014-05-13 23:26:20 +0200
commita362f15f85fc3f00ea3144f763798131cb66e3e3 (patch)
tree36519d7e7afe6c643fdd0c781fddb069ff86648e
parent036a660a86c225992c7cab083073374c40b1f366 (diff)
Typo: shoud -> should
Change-Id: I44f4fb9682a56af6654e1f7462dc37557d60e735
-rw-r--r--dbaccess/source/ui/app/AppController.cxx2
-rw-r--r--dbaccess/source/ui/browser/dsbrowserDnD.cxx2
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/Helper.java2
-rw-r--r--filter/qa/complex/filter/misc/FinalizedMandatoryTest.java2
-rw-r--r--include/dbaccess/genericcontroller.hxx2
-rw-r--r--sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx2
-rw-r--r--sw/source/filter/ww8/docxattributeoutput.cxx2
-rw-r--r--tubes/source/file-transfer-helper.c2
-rw-r--r--vbahelper/source/vbahelper/vbacommandbarhelper.cxx2
-rw-r--r--vcl/source/control/button.cxx2
-rw-r--r--xmloff/source/text/txtvfldi.cxx2
11 files changed, 11 insertions, 11 deletions
diff --git a/dbaccess/source/ui/app/AppController.cxx b/dbaccess/source/ui/app/AppController.cxx
index 5a4c1a28282a..374cad94aead 100644
--- a/dbaccess/source/ui/app/AppController.cxx
+++ b/dbaccess/source/ui/app/AppController.cxx
@@ -2480,7 +2480,7 @@ sal_Int8 OApplicationController::executeDrop( const ExecuteDropEvent& _rEvt )
if ( !pView || pView->getElementType() == E_NONE )
{
OSL_FAIL("OApplicationController::executeDrop: what the hell did queryDrop do?");
- // queryDrop shoud not have allowed us to reach this situation ....
+ // queryDrop should not have allowed us to reach this situation ....
return DND_ACTION_NONE;
}
diff --git a/dbaccess/source/ui/browser/dsbrowserDnD.cxx b/dbaccess/source/ui/browser/dsbrowserDnD.cxx
index ddb081a916c8..a65a3a440915 100644
--- a/dbaccess/source/ui/browser/dsbrowserDnD.cxx
+++ b/dbaccess/source/ui/browser/dsbrowserDnD.cxx
@@ -121,7 +121,7 @@ namespace dbaui
if (!isContainer(eEntryType))
{
OSL_FAIL("SbaTableQueryBrowser::executeDrop: what the hell did queryDrop do?");
- // queryDrop shoud not have allowed us to reach this situation ....
+ // queryDrop should not have allowed us to reach this situation ....
return DND_ACTION_NONE;
}
// a TransferableDataHelper for accessing the dropped data
diff --git a/filter/qa/complex/filter/detection/typeDetection/Helper.java b/filter/qa/complex/filter/detection/typeDetection/Helper.java
index 60e2ecd752aa..bef8f74ffd12 100644
--- a/filter/qa/complex/filter/detection/typeDetection/Helper.java
+++ b/filter/qa/complex/filter/detection/typeDetection/Helper.java
@@ -212,7 +212,7 @@ public class Helper {
}
/** returns a XInputStream of given file
- * @param filePath the path to the file which shoud be loaded
+ * @param filePath the path to the file which should be loaded
* @return the XInputStream, <null/> if the
* file cannot be read
* @throws NotConnectedException was thrown if it was not possible to open <CODE>filePath</CODE>
diff --git a/filter/qa/complex/filter/misc/FinalizedMandatoryTest.java b/filter/qa/complex/filter/misc/FinalizedMandatoryTest.java
index c997831290cd..a78a76e75f6c 100644
--- a/filter/qa/complex/filter/misc/FinalizedMandatoryTest.java
+++ b/filter/qa/complex/filter/misc/FinalizedMandatoryTest.java
@@ -307,7 +307,7 @@ public class FinalizedMandatoryTest
/**
* returns the value of the specified (<CODE>pName</CODE>) property from a sequenze of <CODE>PropertyValue</CODE>
* @param props a sequenze of <CODE>PropertyVlaue</CODE>
- * @param pName the name of the property the value shoud be returned
+ * @param pName the name of the property the value should be returned
* @return the value of the property
*/
protected Object getPropertyValueValue(PropertyValue[] props, String pName)
diff --git a/include/dbaccess/genericcontroller.hxx b/include/dbaccess/genericcontroller.hxx
index 43b7546094dd..e11098df228a 100644
--- a/include/dbaccess/genericcontroller.hxx
+++ b/include/dbaccess/genericcontroller.hxx
@@ -239,7 +239,7 @@ namespace dbaui
StateCache m_aStateCache; // save the current status of feature state
Dispatch m_arrStatusListener; // all our listeners where we dispatch status changes
OAsyncronousLink m_aAsyncInvalidateAll;
- OAsyncronousLink m_aAsyncCloseTask; // called when a task shoud be closed
+ OAsyncronousLink m_aAsyncCloseTask; // called when a task should be closed
::com::sun::star::uno::Reference< ::com::sun::star::util::XURLTransformer > m_xUrlTransformer; // needed sometimes
::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext;
diff --git a/sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx b/sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx
index 7996d645a011..98b44a5fa714 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx
@@ -465,7 +465,7 @@ DECLARE_OOXMLEXPORT_TEST(testFdo69636, "fdo69636.docx")
DECLARE_OOXMLEXPORT_TEST(testVMLData, "TestVMLData.docx")
{
// The problem was exporter was exporting vml data for shape in w:rPr element.
- // vml data shoud not come under w:rPr element.
+ // vml data should not come under w:rPr element.
xmlDocPtr pXmlDoc = parseExport("word/header1.xml");
if (!pXmlDoc)
return;
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx
index 2d3074997779..4598bb7fbcca 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -2679,7 +2679,7 @@ void DocxAttributeOutput::TableDefinition( ww8::WW8TableNodeInfoInner::Pointer_t
const char* widthType = "dxa";
bool bRelBoxSize = false;
- // If actual width of table is relative it shoud export is as "pct".`
+ // If actual width of table is relative it should export is as "pct".`
const SwTable *pTable = pTableTextNodeInfoInner->getTable();
SwFrmFmt *pTblFmt = pTable->GetFrmFmt( );
const SwFmtFrmSize &rSize = pTblFmt->GetFrmSize();
diff --git a/tubes/source/file-transfer-helper.c b/tubes/source/file-transfer-helper.c
index cc35f6fb585b..41dee760b302 100644
--- a/tubes/source/file-transfer-helper.c
+++ b/tubes/source/file-transfer-helper.c
@@ -528,7 +528,7 @@ empathy_ft_handler_class_init (EmpathyFTHandlerClass *klass)
*
* This signal is emitted when the hashing operation of the handler
* is started. Note that this might happen or not, depending on the CM
- * and remote contact capabilities. Clients shoud use
+ * and remote contact capabilities. Clients should use
* empathy_ft_handler_get_use_hash() before calling
* empathy_ft_handler_start_transfer() to know whether they should connect
* to this signal.
diff --git a/vbahelper/source/vbahelper/vbacommandbarhelper.cxx b/vbahelper/source/vbahelper/vbacommandbarhelper.cxx
index 196fbb914b16..403d592b6b37 100644
--- a/vbahelper/source/vbahelper/vbacommandbarhelper.cxx
+++ b/vbahelper/source/vbahelper/vbacommandbarhelper.cxx
@@ -213,7 +213,7 @@ OUString VbaCommandBarHelper::findToolbarByName( const css::uno::Reference< css:
}
}
- // the customize toolbars creating during importing, shoud found there.
+ // the customize toolbars creating during importing, should found there.
static OUString sToolbarPrefix( "private:resource/toolbar/custom_" );
sResourceUrl = sToolbarPrefix.concat( sName );
if( hasToolbar( sResourceUrl, sName ) )
diff --git a/vcl/source/control/button.cxx b/vcl/source/control/button.cxx
index 6cf70e091c41..7b07f52aecdb 100644
--- a/vcl/source/control/button.cxx
+++ b/vcl/source/control/button.cxx
@@ -655,7 +655,7 @@ void PushButton::ImplInitSettings( bool bFont,
SetBackground();
// #i38498#: do not check for GetParent()->IsChildTransparentModeEnabled()
// otherwise the formcontrol button will be overdrawn due to PARENTCLIPMODE_NOCLIP
- // for radio and checkbox this is ok as they shoud appear transparent in documents
+ // for radio and checkbox this is ok as they should appear transparent in documents
if ( IsNativeControlSupported( CTRL_PUSHBUTTON, PART_ENTIRE_CONTROL ) ||
(GetStyle() & WB_FLATBUTTON) != 0 )
{
diff --git a/xmloff/source/text/txtvfldi.cxx b/xmloff/source/text/txtvfldi.cxx
index 34238c06365d..146a4125c313 100644
--- a/xmloff/source/text/txtvfldi.cxx
+++ b/xmloff/source/text/txtvfldi.cxx
@@ -364,7 +364,7 @@ bool XMLSetVarFieldImportContext::FindFieldMaster(
Reference<XPropertySet> & xMaster)
{
// currently: delegate to XMLVariableDeclImportContext;
- // shoud eventually go here
+ // should eventually go here
return XMLVariableDeclImportContext::FindFieldMaster(xMaster,
GetImport(),
GetImportHelper(),