summaryrefslogtreecommitdiff
path: root/sd/source/ui/docshell
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/ui/docshell
parent6445d8d7d662d9bbeb20647bd14470ff7a4dba34 (diff)
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/ui/docshell')
-rw-r--r--sd/source/ui/docshell/docshel4.cxx4
1 files changed, 2 insertions, 2 deletions
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;