Kaydet (Commit) 902d4ded authored tarafından Caolán McNamara's avatar Caolán McNamara

drop annoying empty (slide) entry in inset->envelope->format

Change-Id: I87018c06e8aff15431a63ddf1d81299a233a7c0b
üst 2fbee32d
......@@ -178,14 +178,16 @@ SwEnvFmtPage::SwEnvFmtPage(Window* pParent, const SfxItemSet& rSet)
{
if (i != PAPER_USER)
{
String aPaperName = SvxPaperInfo::GetName((Paper) i),
aEntryName;
OUString aPaperName = SvxPaperInfo::GetName((Paper) i);
if (aPaperName.isEmpty())
continue;
sal_uInt16 nPos = 0;
bool bFound = false;
while (nPos < m_pSizeFormatBox->GetEntryCount() && !bFound)
{
aEntryName = m_pSizeFormatBox->GetEntry(i);
OUString aEntryName = m_pSizeFormatBox->GetEntry(i);
if (aEntryName < aPaperName)
nPos++;
else
......
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