summaryrefslogtreecommitdiff
path: root/cui/source/options
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-02-11 11:10:25 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-02-11 11:13:36 +0000
commit4895dd454ccf3d403b2ed7aa4b19f726c28e6032 (patch)
treed2cc3753f0e98699b4e3c96850fa072dbcae2176 /cui/source/options
parent992f3ce06773cd05dbb66162f51408338d3db801 (diff)
add borders to simpletablecontainer
Change-Id: I9215516c21ce1330cf1fef07cbd647a1c318e241
Diffstat (limited to 'cui/source/options')
-rw-r--r--cui/source/options/certpath.cxx2
-rw-r--r--cui/source/options/fontsubs.cxx2
-rw-r--r--cui/source/options/fontsubs.hxx2
-rw-r--r--cui/source/options/optjava.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/cui/source/options/certpath.cxx b/cui/source/options/certpath.cxx
index e5672603b681..37719bc0f95d 100644
--- a/cui/source/options/certpath.cxx
+++ b/cui/source/options/certpath.cxx
@@ -50,7 +50,7 @@ CertPathDialog::CertPathDialog( Window* pParent ) :
, m_aCertPathFL ( this, CUI_RES( FL_CERTPATH ) )
, m_aCertPathFT ( this, CUI_RES( FT_CERTPATH ) )
, m_aCertPathListContainer( this, CUI_RES( LB_CERTPATH ) )
- , m_aCertPathList( m_aCertPathListContainer )
+ , m_aCertPathList( m_aCertPathListContainer, WB_BORDER )
, m_aAddBtn ( this, CUI_RES( PB_ADD ) )
, m_aButtonsFL ( this, CUI_RES( FL_BUTTONS ) )
, m_aOKBtn ( this, CUI_RES( PB_OK ) )
diff --git a/cui/source/options/fontsubs.cxx b/cui/source/options/fontsubs.cxx
index 87afaf944b56..2f94e8b95aef 100644
--- a/cui/source/options/fontsubs.cxx
+++ b/cui/source/options/fontsubs.cxx
@@ -63,7 +63,7 @@ SvxFontSubstTabPage::SvxFontSubstTabPage( Window* pParent,
pCheckLBContainer->set_width_request(aControlSize.Width());
pCheckLBContainer->set_height_request(aControlSize.Height());
- m_pCheckLB = new SvxFontSubstCheckListBox(*pCheckLBContainer);
+ m_pCheckLB = new SvxFontSubstCheckListBox(*pCheckLBContainer, 0);
m_pCheckLB->SetHelpId(HID_OFA_FONT_SUBST_CLB);
m_pCheckLB->SetStyle(m_pCheckLB->GetStyle()|WB_HSCROLL|WB_VSCROLL);
diff --git a/cui/source/options/fontsubs.hxx b/cui/source/options/fontsubs.hxx
index 775960a1d8fe..fbc29def2035 100644
--- a/cui/source/options/fontsubs.hxx
+++ b/cui/source/options/fontsubs.hxx
@@ -41,7 +41,7 @@ class SvxFontSubstCheckListBox : public SvxSimpleTable
virtual void Resize();
public:
- SvxFontSubstCheckListBox(SvxSimpleTableContainer& rParent, WinBits nBits = WB_BORDER)
+ SvxFontSubstCheckListBox(SvxSimpleTableContainer& rParent, WinBits nBits)
: SvxSimpleTable(rParent, nBits)
{
}
diff --git a/cui/source/options/optjava.cxx b/cui/source/options/optjava.cxx
index a5389cab2cc8..47f1f9bfffaf 100644
--- a/cui/source/options/optjava.cxx
+++ b/cui/source/options/optjava.cxx
@@ -89,7 +89,7 @@ private:
const OUString m_sAccessibilityText;
public:
SvxJavaListBox(SvxSimpleTableContainer& rParent, const OUString &rAccessibilityText)
- : SvxRadioButtonListBox(rParent)
+ : SvxRadioButtonListBox(rParent, 0)
, m_sAccessibilityText(rAccessibilityText)
{
}