summaryrefslogtreecommitdiffstats
path: root/sd/source
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2016-10-01 14:12:30 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-10-01 19:10:20 +0000
commit441fa1c03664081d76bf6007c4ac0aee32f56342 (patch)
tree7f96d821be5261ca4dae65651ee6016bb922ab94 /sd/source
parentFix typos (diff)
downloadcore-441fa1c03664081d76bf6007c4ac0aee32f56342.tar.gz
core-441fa1c03664081d76bf6007c4ac0aee32f56342.zip
Fix typos
Change-Id: I1e0e6f1b99090f26a6cd657ee9019bf2fa906dd9 Reviewed-on: https://gerrit.libreoffice.org/29436 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source')
-rw-r--r--sd/source/filter/ppt/pptinanimations.cxx4
-rw-r--r--sd/source/ui/docshell/docshel4.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/filter/ppt/pptinanimations.cxx b/sd/source/filter/ppt/pptinanimations.cxx
index a280ca5374c7..bbcc709084d9 100644
--- a/sd/source/filter/ppt/pptinanimations.cxx
+++ b/sd/source/filter/ppt/pptinanimations.cxx
@@ -319,7 +319,7 @@ int AnimationImporter::importAnimationContainer( const Atom* pAtom, const Refere
xNode = mxRootNode;
}
- // import if we have a node and its not random
+ // import if we have a node and it's not random
if( xNode.is() )
{
fillNode( xNode, aNode, aSet );
@@ -622,7 +622,7 @@ bool AnimationImporter::convertAnimationNode( const Reference< XAnimationNode >&
xNode->setUserData( aUserData );
}
- // if its an after effect node, add it to the list for
+ // if it's an after effect node, add it to the list for
// later processing
// after effect nodes are not inserted at their import
// position, so return false in this case
diff --git a/sd/source/ui/docshell/docshel4.cxx b/sd/source/ui/docshell/docshel4.cxx
index 3668a9588d0e..63696aa45269 100644
--- a/sd/source/ui/docshell/docshel4.cxx
+++ b/sd/source/ui/docshell/docshel4.cxx
@@ -175,14 +175,14 @@ Printer* DrawDocShell::GetDocumentPrinter()
void DrawDocShell::OnDocumentPrinterChanged(Printer* pNewPrinter)
{
- // if we already have a printer, see if its the same
+ // if we already have a printer, see if it's the same
if( mpPrinter )
{
// easy case
if( mpPrinter == pNewPrinter )
return;
- // compare if its the same printer with the same job setup
+ // compare if it's the same printer with the same job setup
if( (mpPrinter->GetName() == pNewPrinter->GetName()) &&
(mpPrinter->GetJobSetup() == pNewPrinter->GetJobSetup()))
return;