Kaydet (Commit) d3456256 authored tarafından Miklos Vajna's avatar Miklos Vajna

sw: outline SwTextFormatInfo ctor

Change-Id: I07b3a7768def547a34cbcdd8966157065605d5fb
üst 0c33e10b
......@@ -1467,6 +1467,12 @@ void SwTextFormatInfo::Init()
SetPaintOfst(0);
}
SwTextFormatInfo::SwTextFormatInfo(SwTextFrm *pFrame, const bool bInterHyphL,
const bool bQuickL, const bool bTst)
{
CtorInitTextFormatInfo(pFrame, bInterHyphL, bQuickL, bTst);
}
/**
* There are a few differences between a copy constructor
* and the following constructor for multi-line formatting.
......
......@@ -563,9 +563,8 @@ class SwTextFormatInfo : public SwTextPaintInfo
public:
void CtorInitTextFormatInfo( SwTextFrm *pFrm, const bool bInterHyph = false,
const bool bQuick = false, const bool bTst = false );
inline SwTextFormatInfo(SwTextFrm *pFrame, const bool bInterHyphL = false,
const bool bQuickL = false, const bool bTst = false)
{ CtorInitTextFormatInfo( pFrame, bInterHyphL, bQuickL, bTst ); }
SwTextFormatInfo(SwTextFrm *pFrame, const bool bInterHyphL = false,
const bool bQuickL = false, const bool bTst = false);
// For the formatting inside a double line in a line (multi-line portion)
// we need a modified text-format-info:
......
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