toggle SvSimpleTableContainer border on by default

Change-Id: I4d6ef44148ba7140405facab7c1d3e7f78a0b8ab
This commit is contained in:
Caolán McNamara
2013-08-12 11:27:55 +01:00
parent 3a16cb8b8e
commit c237b781c4

View File

@@ -43,7 +43,7 @@ SvSimpleTableContainer::SvSimpleTableContainer(Window* pParent, WinBits nBits)
extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSvSimpleTableContainer(Window *pParent,
VclBuilder::stringmap &)
{
return new SvSimpleTableContainer(pParent, WB_TABSTOP | WB_DIALOGCONTROL);
return new SvSimpleTableContainer(pParent, WB_TABSTOP | WB_DIALOGCONTROL | WB_BORDER);
}
void SvSimpleTableContainer::SetTable(SvSimpleTable* pTable)