Kaydet (Commit) cc903aee authored tarafından Noel Grandin's avatar Noel Grandin

fix some "deffer" spelling

Change-Id: I8fa9782242e92d754eaa131d424eb0a26f04a319
Reviewed-on: https://gerrit.libreoffice.org/40394Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
Tested-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 376e27dd
......@@ -1543,7 +1543,7 @@
</xsl:if>
</xsl:when>
<xsl:otherwise>
<!--Means that you have to care about 2 adj parameters which is defferent-->
<!--Means that you have to care about 2 adj parameters which is different-->
<xsl:variable name="mark_used_by_typeid">
<xsl:if test="contains($typeid_adj, ',' )">
<xsl:value-of select="',' "/>
......
......@@ -235,7 +235,7 @@ private:
mbIsCalculatingInitialLayoutSize:1;
protected:
bool mbIsDefferedInit;
bool mbIsDeferredInit;
VclPtr<vcl::Window> mpDialogParent;
private:
......@@ -263,7 +263,7 @@ public:
void setOptimalLayoutSize();
SAL_DLLPRIVATE bool ImplStartDocking( const Point& rPos );
SAL_DLLPRIVATE bool isDeferredInit() const { return mbIsDefferedInit; }
SAL_DLLPRIVATE bool isDeferredInit() const { return mbIsDeferredInit; }
virtual void doDeferredInit(WinBits nBits);
protected:
DockingWindow( WindowType nType );
......
......@@ -167,12 +167,12 @@ private:
Idle maLayoutIdle;
OUString maNotebookBarUIFile;
protected:
bool mbIsDefferedInit;
bool mbIsDeferredInit;
VclPtr<vcl::Window> mpDialogParent;
public:
using Window::ImplIsInTaskPaneList;
SAL_DLLPRIVATE bool ImplIsInTaskPaneList( vcl::Window* pWin );
SAL_DLLPRIVATE bool isDeferredInit() const { return mbIsDefferedInit; }
SAL_DLLPRIVATE bool isDeferredInit() const { return mbIsDeferredInit; }
private:
SAL_DLLPRIVATE void ImplMoveToScreen( long& io_rX, long& io_rY, long i_nWidth, long i_nHeight, vcl::Window const * i_pConfigureWin );
......
......@@ -40,7 +40,7 @@ interface XControl
[attribute] boolean Enabled;
[attribute] boolean Visible;
[attribute] long MousePointer;
//Size. there are some defferent between Mso and OOo.
//Size. there are some different between Mso and OOo.
//Mso use double but OOo use long. OOo 1 = 1/100mm but Mso use pt.
//in Dialogs Mso uses pixels
[attribute] double Height;
......
......@@ -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)
......
......@@ -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) );
}
......
......@@ -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)
......
......@@ -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) );
}
......
......@@ -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 ) :
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment