summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-03-08 11:23:03 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-03-08 15:17:45 +0000
commitbb0cae0f967eed386b546dd7367c2cc1b274f555 (patch)
treec867c9196ac3d7e83d38c45c7d4e1e06aeafc726
parent0ae97c39134a73feeea718e81669fd42e5ceb627 (diff)
libreofficekit, svx, sw: fix typos
Change-Id: I883c0b95d91ae9cb7e59b8f68ae0c8a3ebcb9f88 Reviewed-on: https://gerrit.libreoffice.org/14796 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
-rw-r--r--libreofficekit/source/gtk/lokdocview.c2
-rw-r--r--svx/source/svdraw/svdhdl.cxx2
-rw-r--r--sw/source/core/view/viewsh.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/libreofficekit/source/gtk/lokdocview.c b/libreofficekit/source/gtk/lokdocview.c
index 525bf8449527..672270f0f3fb 100644
--- a/libreofficekit/source/gtk/lokdocview.c
+++ b/libreofficekit/source/gtk/lokdocview.c
@@ -277,7 +277,7 @@ SAL_DLLPUBLIC_EXPORT GtkWidget* lok_docview_new( LibreOfficeKit* pOffice )
return GTK_WIDGET( pDocView );
}
-// We know that VirtualDevises use a DPI of 96.
+// We know that VirtualDevices use a DPI of 96.
static const int g_nDPI = 96;
/// Converts from document coordinates to screen pixels.
diff --git a/svx/source/svdraw/svdhdl.cxx b/svx/source/svdraw/svdhdl.cxx
index 66e3bc1a938c..08afe8891e22 100644
--- a/svx/source/svdraw/svdhdl.cxx
+++ b/svx/source/svdraw/svdhdl.cxx
@@ -372,7 +372,7 @@ void SdrHdl::SetHdlList(SdrHdlList* pList)
{
if(pHdlList != pList)
{
- // rememver list
+ // remember list
pHdlList = pList;
// now its possible to create graphic representation
diff --git a/sw/source/core/view/viewsh.cxx b/sw/source/core/view/viewsh.cxx
index e74f326c111c..da3622884671 100644
--- a/sw/source/core/view/viewsh.cxx
+++ b/sw/source/core/view/viewsh.cxx
@@ -1790,7 +1790,7 @@ void SwViewShell::PaintTile(VirtualDevice &rDevice, int contextWidth, int contex
aMapMode.SetOrigin(Point(-tilePosX, -tilePosY));
// Scaling. Must convert from pixels to twips. We know
- // that VirtualDevises use a DPI of 96.
+ // that VirtualDevices use a DPI of 96.
Fraction scaleX = Fraction(contextWidth, 96) * Fraction(1440L) / Fraction(tileWidth);
Fraction scaleY = Fraction(contextHeight, 96) * Fraction(1440L) / Fraction(tileHeight);
aMapMode.SetScaleX(scaleX);