summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-25 12:09:00 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-25 13:25:59 +0200
commitcc903aee9769df035ec42e66341b6f69a4771562 (patch)
tree2b2c9f073aa2287a6326b0121abda4dd450e424a /vcl
parent376e27dd498d64212e570354a94c527b37d367b1 (diff)
fix some "deffer" spelling
Change-Id: I8fa9782242e92d754eaa131d424eb0a26f04a319 Reviewed-on: https://gerrit.libreoffice.org/40394 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/dialog.cxx2
-rw-r--r--vcl/source/window/dockwin.cxx6
-rw-r--r--vcl/source/window/floatwin.cxx2
-rw-r--r--vcl/source/window/syswin.cxx4
-rw-r--r--vcl/source/window/toolbox.cxx2
5 files changed, 8 insertions, 8 deletions
diff --git a/vcl/source/window/dialog.cxx b/vcl/source/window/dialog.cxx
index d77da75f23be..aa25bae8c74b 100644
--- a/vcl/source/window/dialog.cxx
+++ b/vcl/source/window/dialog.cxx
@@ -498,7 +498,7 @@ void Dialog::doDeferredInit(WinBits nBits)
VclPtr<vcl::Window> pParent = mpDialogParent;
mpDialogParent = nullptr;
ImplInit(pParent, nBits, mnInitFlag);
- mbIsDefferedInit = false;
+ mbIsDeferredInit = false;
}
Dialog::Dialog(vcl::Window* pParent, const OUString& rID, const OUString& rUIXMLDescription)
diff --git a/vcl/source/window/dockwin.cxx b/vcl/source/window/dockwin.cxx
index e96c3de183e9..e50bcf08f76b 100644
--- a/vcl/source/window/dockwin.cxx
+++ b/vcl/source/window/dockwin.cxx
@@ -297,7 +297,7 @@ void DockingWindow::ImplInitDockingWindowData()
mbRollUp = false;
mbDockBtn = false;
mbHideBtn = false;
- mbIsDefferedInit = false;
+ mbIsDeferredInit = false;
mbIsCalculatingInitialLayoutSize = false;
mpDialogParent = nullptr;
@@ -362,13 +362,13 @@ void DockingWindow::doDeferredInit(WinBits nBits)
vcl::Window *pParent = mpDialogParent;
mpDialogParent = nullptr;
ImplInit(pParent, nBits);
- mbIsDefferedInit = false;
+ mbIsDeferredInit = false;
}
void DockingWindow::loadUI(vcl::Window* pParent, const OString& rID, const OUString& rUIXMLDescription,
const css::uno::Reference<css::frame::XFrame> &rFrame)
{
- mbIsDefferedInit = true;
+ mbIsDeferredInit = true;
mpDialogParent = pParent; //should be unset in doDeferredInit
m_pUIBuilder.reset( new VclBuilder(this, getUIRootDir(), rUIXMLDescription, rID, rFrame) );
}
diff --git a/vcl/source/window/floatwin.cxx b/vcl/source/window/floatwin.cxx
index ddca40f52d5c..23e56ce6e669 100644
--- a/vcl/source/window/floatwin.cxx
+++ b/vcl/source/window/floatwin.cxx
@@ -175,7 +175,7 @@ void FloatingWindow::doDeferredInit(WinBits nBits)
vcl::Window *pParent = mpDialogParent;
mpDialogParent = nullptr;
ImplInit(pParent, nBits);
- mbIsDefferedInit = false;
+ mbIsDeferredInit = false;
}
void FloatingWindow::ApplySettings(vcl::RenderContext& rRenderContext)
diff --git a/vcl/source/window/syswin.cxx b/vcl/source/window/syswin.cxx
index 80b5e6a0fa57..9c42fc94b2de 100644
--- a/vcl/source/window/syswin.cxx
+++ b/vcl/source/window/syswin.cxx
@@ -73,7 +73,7 @@ SystemWindow::SystemWindow(WindowType nType)
, mnMenuBarMode(MenuBarMode::Normal)
, mnIcon(0)
, mpImplData(new ImplData)
- , mbIsDefferedInit(false)
+ , mbIsDeferredInit(false)
{
mpWindowImpl->mbSysWin = true;
mpWindowImpl->mnActivateMode = ActivateModeFlags::GrabFocus;
@@ -87,7 +87,7 @@ SystemWindow::SystemWindow(WindowType nType)
void SystemWindow::loadUI(vcl::Window* pParent, const OString& rID, const OUString& rUIXMLDescription,
const css::uno::Reference<css::frame::XFrame> &rFrame)
{
- mbIsDefferedInit = true;
+ mbIsDeferredInit = true;
mpDialogParent = pParent; //should be unset in doDeferredInit
m_pUIBuilder.reset( new VclBuilder(this, getUIRootDir(), rUIXMLDescription, rID, rFrame) );
}
diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx
index 6d4a30470635..26579b2ddf98 100644
--- a/vcl/source/window/toolbox.cxx
+++ b/vcl/source/window/toolbox.cxx
@@ -1305,7 +1305,7 @@ void ToolBox::doDeferredInit(WinBits nBits)
VclPtr<vcl::Window> pParent = mpDialogParent;
mpDialogParent = nullptr;
ImplInit(pParent, nBits);
- mbIsDefferedInit = false;
+ mbIsDeferredInit = false;
}
ToolBox::ToolBox( vcl::Window* pParent, WinBits nStyle ) :